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

    Interface MassIndexOptions<S, Output>

    interface MassIndexOptions<S extends SeriesSchema, Output extends string> {
        emaPeriod?: number;
        high?: NumericColumnNameForSchema<S>;
        low?: NumericColumnNameForSchema<S>;
        output?: Output;
        sumPeriod?: number;
    }

    Type Parameters

    • S extends SeriesSchema
    • Output extends string
    Index

    Properties

    emaPeriod?: number

    Span of each of the two chained EMAs, in bars. Default 9.

    high?: NumericColumnNameForSchema<S>

    High column. Default 'high'.

    low?: NumericColumnNameForSchema<S>

    Low column. Default 'low'.

    output?: Output

    Name of the appended column. Default 'mass'.

    sumPeriod?: number

    Summation look-back over the EMA ratio, in bars. Default 25.