Hi, wanted to plot live volume data per tick using python and data received from Kite API. It should keep updating chart. Appreciate if any example or test case ...
@Vblaze10 We don't have any example or test case for plotting volume bars. Volume data in Kite Ticker is cumulative(total volume for the day, till last available tick). So, if you want to calculate volume for any specific time interval, say 5 minutes, you need to capture tick volume data at the start of interval and at the end of interval and keep subtracting. volume of 5 minute = volume of first tick - volume of last tick
We don't have any example or test case for plotting volume bars.
Volume data in Kite Ticker is cumulative(total volume for the day, till last available tick). So, if you want to calculate volume for any specific time interval, say 5 minutes, you need to capture tick volume data at the start of interval and at the end of interval and keep subtracting.
volume of 5 minute = volume of first tick - volume of last tick
use matplotlib to plot the data