I want to plot only live volume data using python.

Vblaze10
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 ...
  • rakeshr
    @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
  • Vblaze10
    @rakeshr I want to plot volume data of each tick not of 5 minutes.
  • Imran
    volume of this tick = volume of this tick - volume of previous tick
    use matplotlib to plot the data
Sign In or Register to comment.