• Detects a Doji candlestick pattern, indicating market indecision.

    A Doji occurs when the open and close prices are nearly identical, making the body very small relative to the overall range (high - low).

    Parameters

    • candle: ICandle

      The candle to evaluate.

    • threshold: number = 0.1

      Optional threshold for the maximum body-to-range ratio to qualify as a Doji.

    Returns SIGNAL_DIRECTION

    A SIGNAL_DIRECTION: - BIDIRECTIONAL if a Doji is detected. - NONE otherwise.

    Default

    0.1 (10% of the total candle range)
    

    Example

    import * as ta from 'chart-patterns';

    const signal = ta.CandlestickPatterns.detectDoji(candle, 0.05);

Generated using TypeDoc