Python websoket client: Full Mode working but showing "quote" value for "mode" key in returned dict

naz
@sujith : I am using Python websocket client and "Full" mode seems to be working fine as I can see depth and ohlc data in the returned python dict object. Surprisingly, returned dict's "mode" key is showing "quote" as value (i would have expected something like "Full"). Just wanted to confirm if this is the intended behavior/output).:


{
'tradeable': True,
'mode': 'quote',
'instrument_token': 131464196,
'last_price': 74.0,
'last_quantity': 700,
'average_price': 74.58,
'volume': 15847,
'buy_quantity': 0,
'sell_quantity': 0,
'ohlc': {'open': 75.2, 'high': 75.3, 'low': 70.05, 'close': 71.75},
'change': 3.1358885017421603,
'depth': {
'buy':
[{'quantity': 0, 'price': 0.0, 'orders': 0},
{'quantity': 0, 'price': 0.0, 'orders': 0},
{'quantity': 0, 'price': 0.0, 'orders': 0},
{'quantity': 0, 'price': 0.0, 'orders': 0},
{'quantity': 0, 'price': 0.0, 'orders': 0}],
'sell':
[{'quantity': 0, 'price': 0.0, 'orders': 0},
{'quantity': 0, 'price': 0.0, 'orders': 0},
{'quantity': 0, 'price': 0.0, 'orders': 0},
{'quantity': 0, 'price': 0.0, 'orders': 0},
{'quantity': 0, 'price': 0.0, 'orders': 0}]}
}



This discussion has been closed.