Function: parabolicSar()
ts
function parabolicSar(
high,
low,
step?,
max?): Float64Array;Defined in: finance/indicators.ts:492
Parabolic SAR — the trailing stop-and-reverse dots. step is the acceleration increment and max its ceiling (Wilder's 0.02 / 0.2).
Parameters
| Parameter | Type | Default value |
|---|---|---|
high | ArrayLike<number> | undefined |
low | ArrayLike<number> | undefined |
step | number | 0.02 |
max | number | 0.2 |
Returns
Float64Array