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

    Interface BollingerDerivedOptions<S, Output>

    Options shared by the two studies derived from the Bollinger bands.

    interface BollingerDerivedOptions<S extends SeriesSchema, Output extends string> {
        column?: NumericColumnNameForSchema<S>;
        output?: Output;
        period?: number;
        stdDev?: number;
    }

    Type Parameters

    • S extends SeriesSchema
    • Output extends string
    Index

    Properties

    column?: NumericColumnNameForSchema<S>

    Source column. Default 'close'.

    output?: Output

    Name of the appended column. Default the study's own name.

    period?: number

    Window length in bars. Default 20 (Bollinger's own).

    stdDev?: number

    Band half-width in standard deviations. Default 2.