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

    Interface MomentumOptions<S, Output>

    interface MomentumOptions<S extends SeriesSchema, Output extends string> {
        column?: NumericColumnNameForSchema<S>;
        output?: Output;
        period?: 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 'momentum'.

    period?: number

    Look-back in bars. Default 10 (TA-Lib's own).