how to read the feed data for calculation
-
hi,
I want to know example of the reading the feed data. as of now i am able to successfully connect ticks feed using websocket and multiprocessing.process. this is printing feed data in system output. i want to know how can i read this data for further massaging, like if it can come in a variable then i can put some conditions here and use them.ss = WebSocket(FEED_TOKEN, CLIENT_CODE)
p1 = multiprocessing.Process(target = ss.connect(),args=tick_data)
sys.exit()
p1.start() -
HI @Sovik Please go through the smart API doc to understand the response from the websocket also to perform operations on the output from the wb you need to write your own piece of code.