ta.iii
Intraday Intensity Index
Intraday Intensity Index. Measures the relationship between the close price and the high-low range, weighted by volume.
Syntax
ta.iiiReturns
series float
Code Examples
//@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.
Related Pine Script Functions
ta.obv - On Balance Volume
Learn about ta.obv built-in variable in Pine Script. Access On Balance Volume for volume-based trend confirmation.
ta.mfi() - Money Flow Index
Learn how to use ta.mfi() in Pine Script. Syntax, parameters, code examples for the volume-weighted RSI indicator.
ta.accdist - Accumulation/Distribution
Learn about ta.accdist built-in variable in Pine Script. Access the Accumulation/Distribution Index for money flow analysis.
ta.pvt - Price-Volume Trend
Learn about ta.pvt built-in variable in Pine Script. Access Price-Volume Trend for percentage-weighted volume analysis.
ta.wad - Williams A/D
Learn about ta.wad built-in variable in Pine Script. Access Williams Accumulation/Distribution for true range volume analysis.