@pond-ts/financial API Reference
    Preparing search index...

    Interface ParabolicSarOptions<S, Prefix>

    interface ParabolicSarOptions<S extends SeriesSchema, Prefix extends string> {
        high?: NumericColumnNameForSchema<S>;
        low?: NumericColumnNameForSchema<S>;
        maxStep?: number;
        prefix?: Prefix;
        step?: number;
    }

    Type Parameters

    • S extends SeriesSchema
    • Prefix extends string
    Index

    Properties

    high?: NumericColumnNameForSchema<S>

    High column. Default 'high'.

    low?: NumericColumnNameForSchema<S>

    Low column. Default 'low'.

    maxStep?: number

    Acceleration ceiling. Default 0.2.

    prefix?: Prefix

    Column-family prefix — appends ${prefix} (the stop value) and ${prefix}Trend (+1 long / −1 short). Default 'psar'.

    step?: number

    Acceleration increment — the step the factor grows by on each new extreme, and its starting value. Default 0.02.