The candle to evaluate.
Optional threshold for upper shadow to body ratio (default: 2.0).
A SIGNAL_DIRECTION:
- BULLISH
if a bullish Inverted Hammer is detected (bullish candle).
- BEARISH
if a bearish Shooting Star is detected (bearish candle).
- NONE
if no pattern is detected.
import * as ta from 'chart-patterns';
const signal = ta.CandlestickPatterns.detectInvertedHammer(candle, 2.5);
Generated using TypeDoc
Detects an Inverted Hammer or Shooting Star candlestick pattern.
These patterns have a small body and a long upper shadow (wick), with little to no lower shadow.
Both have identical appearance but different context/implications. This function detects the pattern only; trend context should be evaluated separately.