Lipi Reference Lipi

Variables

orderflow.delta

The bar's delta as at its close. For the delta accumulated across a session rather than one bar's figure, call `orderflow.cvd()`.

Example


          indicator("Orderflow Delta", overlay=false)
delta = orderflow.delta
plot(delta, title="Delta", style=plotStyle.histogram, color=delta >= 0 ? color.green : color.red)
        

Type

series int