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

    Interface SchaffTrendCycleOptions<S, Output>

    interface SchaffTrendCycleOptions<S extends SeriesSchema, Output extends string> {
        column?: NumericColumnNameForSchema<S>;
        cyclePeriod?: number;
        fastPeriod?: number;
        output?: Output;
        slowPeriod?: number;
    }

    Type Parameters

    • S extends SeriesSchema
    • Output extends string
    Index

    Properties

    column?: NumericColumnNameForSchema<S>

    Source column. Default 'close'.

    cyclePeriod?: number

    Look-back of both stochastic passes, in bars. Default 10.

    fastPeriod?: number

    Fast EMA span of the underlying MACD, in bars. Default 23.

    output?: Output

    Appended column name. Default 'stc'.

    slowPeriod?: number

    Slow EMA span of the underlying MACD, in bars. Default 50.