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

    Interface AroonOptions<S, Prefix>

    interface AroonOptions<S extends SeriesSchema, Prefix extends string> {
        high?: NumericColumnNameForSchema<S>;
        low?: NumericColumnNameForSchema<S>;
        period?: number;
        prefix?: Prefix;
    }

    Type Parameters

    • S extends SeriesSchema
    • Prefix extends string
    Index

    Properties

    high?: NumericColumnNameForSchema<S>

    High column. Default 'high'.

    low?: NumericColumnNameForSchema<S>

    Low column. Default 'low'.

    period?: number

    Look-back in bars — the oldest age the oscillator can report. Default 25.

    prefix?: Prefix

    Column-family prefix — appends ${prefix}Up / ${prefix}Down / ${prefix}Osc. Default 'aroon'.