Simple Bullish/Bearish Harami candle screener with simple ATR filter – works pretty well
ATR = AverageTrueRange[2](close)[2]
BearishHarami = high < high[1] and low > low[1] and close[1] > open[1] and close < open and open < close[1] and close > open[1] and open - close > ATR
BullishHarami = high < high[1] and low > low[1] and close[1] < open[1] and close > open and close < open[1] and open > close[1] and close - open > ATR
If BearishHarami Then
Harami = -1
ElsIf BullishHarami Then
Harami = 1
EndIf
Condition = (BearishHarami Or BullishHarami)
SCREENER[Condition] (Harami AS "HaramiDirection")