Hi guyz, Thankyou very much for the help till now i have received from this forum, further to improve my algo trading , i have come across yet another problem , request fellow members to help me out in this matter.
So as we know below mentioned is the complete FULL tick data we receive:
Now as i need columns as you can see above only inst token,volume ltp, and the ohlc, buy in the ohlc part i'm receiving another dictionary in the pandas dataframe as: instrument_token volume last_price ohlc 0 3050241 134241973 42.40 {'open': 42.3, 'high': 43.45, 'low': 41.85, 'c... 1 415745 13598855 117.45 {'open': 119.25, 'high': 120.2, 'low': 117.0, ...
But i need the OHLC separately as open, high low and close but i'm not able to do so , so my question is how to access the "ohlc" columns from above tick data.