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

    Interface ElderImpulseOptions<S, Output>

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

    Type Parameters

    • S extends SeriesSchema
    • Output extends string
    Index

    Properties

    column?: NumericColumnNameForSchema<S>

    Source column. Default 'close'.

    emaPeriod?: number

    Span of the trend EMA, in bars. Default 13 (Elder's).

    fastPeriod?: number

    Fast MACD EMA span in bars. Default 12.

    output?: Output

    Name of the appended column. Default 'impulse'.

    signalPeriod?: number

    MACD signal EMA span in bars. Default 9.

    slowPeriod?: number

    Slow MACD EMA span in bars. Default 26.