• Detects a Marubozu candlestick pattern, indicating strong market conviction.

    A Marubozu is a candlestick with little to no upper or lower shadows (wicks). It signals strong buyer/seller control throughout the entire period.

    • Bullish Marubozu (green/white): Strong buying pressure
    • Bearish Marubozu (red/black): Strong selling pressure

    Parameters

    • candle: ICandle

      The candle to evaluate.

    • threshold: number = 0.03

      Optional threshold to specify the shadow size relative to body (default: 0.03).

    Returns SIGNAL_DIRECTION

    A SIGNAL_DIRECTION: - BULLISH if a bullish Marubozu is detected. - BEARISH if a bearish Marubozu is detected. - NONE otherwise.

    Example

    import * as ta from 'chart-patterns';

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

Generated using TypeDoc