Variables
orderflow.maxdelta
Returns the maximum delta value at any price level within the current bar. This represents the strongest buying pressure zone inside the candle — where buy volume exceeded sell volume the most
Example
indicator("Max Delta per Bar", overlay=false)
maxDelta = orderflow.maxdelta
plot(maxDelta, title="Max Delta", style=plotStyle.histogram, color=color.green)
Type
series int