Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

SAR

Parabolic Stop-and-Reverse


Description

The Parabolic Stop-and-Reverse calculates a trailing stop. Developed by J. Welles Wilder.

Usage

SAR(HL, accel = c(0.02, 0.2))

Arguments

HL

Object that is coercible to xts or matrix and contains High-Low prices.

accel

accel[1]: Acceleration factor.
accel[2]: Maximum acceleration factor.

Details

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.

Value

A object of the same class as HL or a vector (if try.xts fails) containing the Parabolic Stop and Reverse values.

Author(s)

Joshua Ulrich

References

See Also

See ATR and ADX, which were also developed by Welles Wilder.

Examples

data(ttrc)
sar <- SAR(ttrc[,c("High","Low")])

TTR

Technical Trading Rules

v0.24.2
GPL (>= 2)
Authors
Joshua Ulrich
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.