Skip to content
Algo Trade Analytics Docs

ta.iii - Pine Script Variable

Intraday Intensity Index.

float

series

//@version=6
indicator("Intraday Intensity Index")
plot(ta.iii, color=color.yellow)// the same on pinef_iii() => (2 * close - high - low) / ((high - low) * volume)
plot(f_iii())