Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 791 Bytes

File metadata and controls

24 lines (20 loc) · 791 Bytes

Volatility Indicator Functions

ATR - Average True Range

NOTE: The ATR function has an unstable period.

real = ATR(high, low, close, timeperiod=14)

Learn more about the Average True Range at tadoc.org.

NATR - Normalized Average True Range

NOTE: The NATR function has an unstable period.

real = NATR(high, low, close, timeperiod=14)

Learn more about the Normalized Average True Range at tadoc.org.

TRANGE - True Range

real = TRANGE(high, low, close)

Learn more about the True Range at tadoc.org.

Documentation Index FLOAT_RIGHTAll Function Groups