• Detects a Homing Pigeon candlestick pattern, a bearish continuation pattern.

    A Homing Pigeon pattern consists of two consecutive bearish candles where:

    • Both candles are bearish (close < open)
    • The second candle is completely inside the range of the first candle
    • The second candle's body is smaller than the first candle's body

    This pattern suggests a brief pause in a downtrend before further decline.

    Parameters

    • candles: ICandle[]

      Array of candles to evaluate.

    • index: number

      Index of the second candle in the potential pattern.

    Returns SIGNAL_DIRECTION

    A SIGNAL_DIRECTION: - BEARISH if a Homing Pigeon pattern is detected. - NONE otherwise.

    Example

    import * as ta from 'chart-patterns';

    const signal = ta.CandlestickPatterns.detectHomingPigeon(candles, 5);

Generated using TypeDoc