Array of candles to evaluate.
Index of the second candle in the potential pattern.
A SIGNAL_DIRECTION:
- BEARISH
if a bearish Harami pattern is detected.
- BULLISH
if a bullish Harami pattern is detected.
- NONE
otherwise.
import * as ta from 'chart-patterns';
const signal = ta.CandlestickPatterns.detectHarami(candles, 5);
Generated using TypeDoc
Detects a Harami candlestick pattern, which can be either bearish or bullish.
A Harami pattern consists of two candles where:
Bearish Harami: First candle is bullish, second is bearish - potential reversal of uptrend Bullish Harami: First candle is bearish, second is bullish - potential reversal of downtrend