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

    Interface AwesomeOscillatorOptions<S, Output>

    interface AwesomeOscillatorOptions<
        S extends SeriesSchema,
        Output extends string,
    > {
        fastPeriod?: number;
        high?: NumericColumnNameForSchema<S>;
        low?: NumericColumnNameForSchema<S>;
        output?: Output;
        slowPeriod?: number;
    }

    Type Parameters

    • S extends SeriesSchema
    • Output extends string
    Index

    Properties

    fastPeriod?: number

    Fast SMA length in bars. Default 5.

    high?: NumericColumnNameForSchema<S>

    High column. Default 'high'.

    low?: NumericColumnNameForSchema<S>

    Low column. Default 'low'.

    output?: Output

    Appended column name. Default 'ao'.

    slowPeriod?: number

    Slow SMA length in bars. Default 34.