Last chance! 50% off unlimited learning
Sale ends in
The Aroon indicator attempts to identify starting trends. The indicator
consists of up and down lines, which measure how long it has been since the
highest high/lowest low has occurred in the last n
periods. Developed
by Tushar Chande in 1995.
aroon(HL, n = 20)
Object that is coercible to xts or matrix and contains either a High-Low price series, or a Close price series.
Number of periods to use in the calculation.
A object of the same class as HL
or a matrix (if
try.xts
fails) containing the columns:
The Aroon up indicator.
The Aroon down indicator.
The Aroon oscillator (aroonUp - aroonDn
).
Aroon up (down) is the elapsed time, expressed as a percentage, between today
and the highest (lowest) price in the last n
periods. If today's
price is a new high (low) Aroon up (down) will be 100. Each subsequent period
without another new high (low) causes Aroon up (down) to decrease by (1 /
n
) x 100.
The following site(s) were used to code/document this indicator: http://www.fmlabs.com/reference/Aroon.htm http://www.fmlabs.com/reference/AroonOscillator.htm https://www.linnsoft.com/techind/aroon-arn http://stockcharts.com/school/doku.php?id=chart_school:technical_indicators:aroon
See CCI
, ADX
, TDI
,
VHF
, GMMA
for other indicators that measure trend
direction/strength.
# NOT RUN {
## Get Data and Indicator ##
data(ttrc)
trend <- aroon( ttrc[,c("High", "Low")], n=20 )
# }
Run the code above in your browser using DataLab