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

    Interface QstickOptions<S, Output>

    interface QstickOptions<S extends SeriesSchema, Output extends string> {
        close?: NumericColumnNameForSchema<S>;
        maType?: MaType;
        open?: NumericColumnNameForSchema<S>;
        output?: Output;
        period?: number;
    }

    Type Parameters

    • S extends SeriesSchema
    • Output extends string
    Index

    Properties

    close?: NumericColumnNameForSchema<S>

    Close column. Default 'close'.

    maType?: MaType

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

    open?: NumericColumnNameForSchema<S>

    Open column. Default 'open'.

    output?: Output

    Name of the appended column. Default 'qstick'.

    period?: number

    Smoothing look-back in bars. Default 8.