The full Instrument list is used for instrument info like instrument_token, trading symbol, etc but not for live market data, so market data like last price, won't be able on full instrument list. For all live market data, you will have to use Quote or Websocket streaming.
I would like to know is instrument_token always unique everyday?
Posting source as well:
instrument_dump = kite.instruments("NSE")
instrument_df = pd.DataFrame(instrument_dump)
instrument_df.to_csv("NSE_Instruments_01_09_2021.csv")
Attached SS of the CVS file. Please help.
Even for EQ, its showing Zero. Attaching snapshot.
instrument_dump = kite.instruments(exchange = "NSE")
instrument_df = pd.DataFrame(instrument_dump)
instrument_df.to_csv("NSE_Instruments_01_09_2021.csv", index=False)
Attaching SS of PDB.
For all live market data, you will have to use Quote or Websocket streaming.