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

    Interface StochasticRsiOptions<S, Prefix>

    interface StochasticRsiOptions<S extends SeriesSchema, Prefix extends string> {
        column?: NumericColumnNameForSchema<S>;
        dPeriod?: number;
        kPeriod?: number;
        prefix?: Prefix;
        rsiPeriod?: number;
        stochPeriod?: number;
    }

    Type Parameters

    • S extends SeriesSchema
    • Prefix extends string
    Index

    Properties

    column?: NumericColumnNameForSchema<S>

    Source column the RSI is taken over. Default 'close'.

    dPeriod?: number

    Simple-average length applied to %K to make %D, in bars. Default 3. No TA-Lib equivalent.

    kPeriod?: number

    Simple-average length applied to the raw range position to make %K, in bars. Default 3. 1 leaves %K unsmoothed. TA-Lib calls this fastd_period.

    prefix?: Prefix

    Column-family prefix — appends ${prefix}K and ${prefix}D. Default 'stochRsi'.

    rsiPeriod?: number

    Wilder look-back of the underlying RSI, in bars. Default 14.

    stochPeriod?: number

    Look-back for the highest/lowest of the RSI, in bars. Default 14. TA-Lib calls this fastk_period.