.MODE_FULL not giving market depth data

AAAAAAAAAA
AAAAAAAAAA edited June 15 in Python client
    
def on_connect(ws, response):
ws.subscribe(tokens)
ws.set_mode(ws.MODE_FULL, tokens)


t = []

def on_ticks(ws, ticks):
t.append(ticks)


# as per situations, subscribe to new tokens

ws.subscribe(tokens)

I am not seeing market depth in the ticker data that comes. Still getting tickers that still have mode as "quote".

Expected depth as in this page - https://kite.trade/docs/connect/v3/market-quotes/#:~:text=depth": { "buy": [
  • Nivas
    You may refer to the similar discussion here.
  • AAAAAAAAAA
    I see, is there a parameter in ws.subscribe that would allow me to get full quote? I couldnt find one in the docs. If there's no parameter, how can i get the full quote? Thanks
Sign In or Register to comment.