ATR
Overview of the Average True Range calculation.
/* Average True Range is the greatest of the following:
*
* val1 = distance from today's high to today's low.
* val2 = distance from yesterday's close to today's high.
* val3 = distance from yesterday's close to today's low.
*
* These value are averaged for the specified period using
* Wilder method. This method has an unstable period comparable
* to an Exponential Moving Average (EMA).
*/Last updated
Was this helpful?