Engulfing Candles Screener
Forums › ProRealTime English forum › ProScreener support › Engulfing Candles Screener
- This topic has 8 replies, 3 voices, and was last updated 2 years ago by
lisamitch50.
-
-
11/07/2022 at 11:31 AM #203752
Sup all.
I have been looking around for what im after but nothing close.
Wondering if someone could help me figure out a little something please –
Im trying to make a ProScreener which shows me in the timeframe i chose (D,1hr,15m and so on)
if my indicator has printed a signal…
Basically, i have cobbled together an indicator to show on the charts when an “Engulfing” candle shows up.
I am now looking to have a screener which then shows me which markets it has shown up on..
However, all i get is a full list of the markets i have chosen and the current price See 1st pic.
I cant get the screener to show me when an engulfing candle has printed (Which should also be shown on the chart with the indicator i have made)
Any ideas or links to something similar i can wibble about with please..
Thanks.
11/07/2022 at 1:45 PM #20375911/07/2022 at 2:09 PM #203761Thanks Nicolas,
Im happy to try and code it myself if someone could help a little with what code to look at..
// Engulfing Screener Test
// A Mitchell
// 2022
Bear=(close[1] > open[1] and open > close and open >= close[1] and open[1] >= close and open – close > close[1] – open[1] and high >= High[1] and Low <= Low[1])
if Bear thenendif
Bull=(open[1] > close[1] and close > open and close >= open[1] and close[1] >= open and close – open > open[1] – close[1] and high >= High[1] and Low <= Low[1])
if Bull thenendif
SCREENER(close as “Engulfing”)Many thanks guys.
Mitch
11/07/2022 at 4:06 PM #203764Hi Mitch,
The simplest screener for Bullish and Bearish Engulfing looks like this:
B&B Engulfing12345678910C1 = Close[1] < Open[1] and Open < Close[1] and Close > Open[1] // Bullish EngulfingC2 = Close[1] > Open[1] and Open > Close[1] and Close < Open[1] // Bearish EngulfingIf C1 thenUp = 1elsIf C2 thenUp = -1EndIfSCREENER[C1 or C2](Up as "Bullish = 1 Bearish = -1")11/07/2022 at 4:14 PM #203767Thanks JS
I’ll give that a try when I can get back to the pc.
I have a specific set of “requirements” for my own indicator (lol I would wouldn’t I )
So is there a way I can make a screener that searches all the assets chosen and returns a bullish or bearish depending on my screener.
The standard engulfing candle is ok, but I only trade those whose wicks are bigger AND the body is bigger too. Along with a trend filter on my indicator ( 250ema) so not all engulfing candles show up or are “Indicated” if that makes sense.
Currently en-route to an airport but will update with screenshots and code for anyone to use if you want.
This plays VERY nice onto my oil system I have out on another post.
So I guess I’m really after a screener which returns results based on my indicator ?!??
Thanks again in advance
Mitch
11/07/2022 at 4:16 PM #203768All –
Just so we’re on the same page, I’m not after someone to do a load of work, I’m after help finding the code which might help me make it, but if anyone wants to help code it I won’t say no.
Thanks guys.
Mitch
11/07/2022 at 4:36 PM #203772Hi Mitch,
You can take the “wicks” as an extra condition (High > High[1] and Low < Low[1]) The screener "searches" in all the lists you check...
BB Engulfing + Wicks12345678910C1 = Close[1] < Open[1] and Open < Close[1] and Close > Open[1] and High > High[1] and Low < Low[1] // Bullish Engulfing + WicksC2 = Close[1] > Open[1] and Open > Close[1] and Close < Open[1] and High > High[1] and Low < Low[1] // Bearish Engulfing + WicksIf C1 thenUp = 1elsIf C2 thenUp = -1EndIfSCREENER[C1 or C2](Up as “Bullish = 1 Bearish = -1”)11/07/2022 at 4:44 PM #203773Here are two screenshots of the results of the screener including the “wicks”…
1 user thanked author for this post.
11/10/2022 at 9:23 AM #203912Thanks all and JS – It looks like its sorted, good results and screener looking good too. Thanks.
Mitch
-
AuthorPosts
Find exclusive trading pro-tools on