Lipi Reference Lipi

Variables

orderflow.sellvolume

Returns the total sell volume in the current bar. It sums up the quantities of all sell trades (market orders hitting the bid), indicating aggressive selling pressure.

Example


          indicator("Sell Volume per Bar", overlay=false)
sellVol = orderflow.sellvolume
plot(sellVol, title="Sell Volume", style=plotStyle.histogram, color=color.red)
        

Type

series int