VolumePine Script v6Built-in Variable

ta.iii

Intraday Intensity Index

Intraday Intensity Index. Measures the relationship between the close price and the high-low range, weighted by volume.

Syntax

Syntax
ta.iii

Returns

series float

Code Examples

Pine Script v6 Example
//@version=6
indicator("Intraday Intensity Index")
plot(ta.iii, color=color.yellow)

// the same on pine
f_iii() =>
    (2 * close - high - low) / ((high - low) * volume)

plot(f_iii())

Trading Applications

Measure intraday buying/selling pressure

Identify accumulation and distribution patterns

Confirm breakouts with volume intensity

Use as a component in custom volume indicators

Related Functions

Frequently Asked Questions

Generate ta.iii Code with AI

Skip the manual coding. Use Pineify's AI Coding Agent to generate Pine Script code using ta.iii and other built-in functions instantly.