ATR
Average True Range
Description
The Average True Range indicator was created by J.
Welles Wilder. Its primary use is for determining the volatility of the
security. ATR is the Wilder's moving average of the True Range which is the
greater of: current bar's range and the largest range between current bar's
extremes and last bar's close. The idea is to replace the standard high - low
range of current bar with something that takes into account the previous bar's
close.
Category
Volatility Indicators
Parameters
N ( Default: 10
Min: 1 Max: 300 )
Chart Script
LC:= REF(CLOSE,1);
TR:=
MAX(HIGH-LOW,ABS(LC-HIGH),ABS(LC-LOW));
ATR: WMA(TR,N)