I can't see new fields in tick data: DEBUG:root:{'tradable': True, 'mode': 'quote', 'instrument_token': 340481, 'last_price': 1914.55, 'last_quantity': 1, 'average_price': 1917.46, 'volume': 474832, 'buy_quantity': 107128, 'sell_quantity': 107298, 'ohlc': {'open': 1901.0, 'high': 1924.35, 'low': 1901.0, 'close': 1901.25}, 'change': 0.699539776462851}
What am I missing ?
I can use new functions like "generate_session" and "historical_data" so I guess my kiteconnect lib is already on new version. Also my IDE shows lib version of KiteConnect-3.7.0
Do I need to explicitly specifiy to fetch new tick structure through API ?
quote
mode for that instrument token. Change the mode tofull
to get all new fields.For example, check WebSocket usage section in GitHub repo.