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

    Interface VolumeOscillatorOptions<S, Output>

    interface VolumeOscillatorOptions<S extends SeriesSchema, Output extends string> {
        fastPeriod?: number;
        maType?: MaType;
        output?: Output;
        slowPeriod?: number;
        volume?: NumericColumnNameForSchema<S>;
    }

    Type Parameters

    • S extends SeriesSchema
    • Output extends string
    Index

    Properties

    fastPeriod?: number

    Fast moving-average length in bars. Default 5.

    maType?: MaType

    Which moving average — any of the shared MaType menu. Default 'sma'.

    output?: Output

    Name of the appended column. Default 'volOsc'.

    slowPeriod?: number

    Slow moving-average length in bars. Default 10.

    volume?: NumericColumnNameForSchema<S>

    Volume column. Default 'volume'.