Skip to content

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

ParameterTypeDefault value
highArrayLike<number>undefined
lowArrayLike<number>undefined
stepnumber0.02
maxnumber0.2

Returns

Float64Array

MIT licensed. WebGL2 required.