SAR | R Documentation |
The Parabolic Stop-and-Reverse calculates a trailing stop. Developed by J. Welles Wilder.
SAR(HL, accel = c(0.02, 0.2))
HL |
Object that is coercible to xts or matrix and contains High-Low prices. |
accel |
accel[1]: Acceleration factor. |
The calculation for the SAR is quite complex. See the URLs in the references section for calculation notes.
The SAR assumes that you are always in the market, and calculates the Stop And Reverse point when you would close a long position and open a short position or vice versa.
A object of the same class as HL
or a vector (if
try.xts
fails) containing the Parabolic Stop and Reverse values.
Joshua Ulrich
The following site(s) were used to code/document this
indicator:
https://www.linnsoft.com/techind/parabolic-sar-sar
https://www.fmlabs.com/reference/SAR.htm
https://school.stockcharts.com/doku.php?id=technical_indicators:parabolic_sar
https://www.metastock.com/Customer/Resources/TAAZ/?p=87
See ATR
and ADX
, which were also
developed by Welles Wilder.
data(ttrc)
sar <- SAR(ttrc[,c("High","Low")])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.