Hi, is it possible to help with a screener I need for a certain “engulfer” candle setup? Thanks very much
ENGLUFER CANDLE CRITERIA =
A LARGER CANDLE THAT TURNS IN OPPOSITE DIRECTION FROM PREVIOUS CANDLE
THE HIGH/LOW ( WICK) MUST BE EQUAL OR GREATER THAN PREVIOUS CANDLE
THE OPEN/CLOSE (BODY) MUST BE GREATER THAN PREVIOUS CANDLE
To recap:
- the upper wick must be >= than previous (larger or higher? I assume larger)
- the lower wick must be >= than previous (larger or lower? I assume larger)
- the body must be > than previous
There you go:
Body = abs(close - open)
UpperWick = high - max(open,close)
LowerWick = min(open,close) - low
c1 = UpperWick >= UpperWick[1]
c2 = LowerWick >= LowerWick[1]
c3 = Body > Body[1]
Cond = c1 AND c2 AND c3
SCREENER[Cond]
Hi, I have attached a screenshot for more clarity.
Can there be an adjustment?
Thanks very much for the help.
Sorry, I forgot to add the second candle to go the opposite direction:
Bullish = close > open
Bearish = close < open
Body = abs(close - open)
UpperWick = high - max(open,close)
LowerWick = min(open,close) - low
c1 = UpperWick >= UpperWick[1]
c2 = LowerWick >= LowerWick[1]
c3 = Body > Body[1]
c4 = (Bullish AND Bearish[1]) OR (Bearish AND Bullish[1])
Cond = c1 AND c2 AND c3 AND c4
SCREENER[Cond]
Hi, thanks so much for the formula. Much appreciated 🙂
Kind regards
Neal.