The candle to evaluate.
Optional threshold for the maximum body-to-range ratio to qualify as a Doji.
A SIGNAL_DIRECTION:
- BIDIRECTIONAL
if a Doji is detected.
- NONE
otherwise.
0.1 (10% of the total candle range)
import * as ta from 'chart-patterns';
const signal = ta.CandlestickPatterns.detectDoji(candle, 0.05);
Generated using TypeDoc
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).