Variables
orderflow.buyvolume
Returns the total buy volume within the current bar. This is the sum of quantities of all buy trades (market orders matched with the ask)
Example
indicator("Buy Volume per Bar", overlay=false)
buyVol = orderflow.buyvolume
plot(buyVol, title="Buy Volume", style=plotStyle.histogram, color=color.green)
Type
series int