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

    Interface TrendIntensityIndexOptions<S, Output>

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

    Type Parameters

    • S extends SeriesSchema
    • Output extends string
    Index

    Properties

    column?: NumericColumnNameForSchema<S>

    Source column. Default 'close'.

    maPeriod?: number

    Length of the simple average the deviations are taken from, in bars (Pee's major period). Default 60.

    output?: Output

    Appended column name. Default 'tii'.

    period?: number

    How many bars of deviations are summed, in bars (Pee's minor period). Default 30.