Hello,
in the past I coded some screeners using the free EOD version of ProRealTime. Now I want to buy the full version because I want to screen for patterns on smaller timeframes like M5,M10,M15.
I have a watchlist with around 100 stocks. The screener should look for an bullish engulfing pattern on M5,M10,M15 if the daily open price is above yesterday’s high price. The coding is easy but now my question: Do I have to use the screener manually every 5/10/15 minutes or is it possible to screen automatically when a M5/M10/M15 candle is closed?
Thank you!
Once a screener is running, you only have to watch its list with results as they are first returned, then updated live (not when a candle closes).
Screeners keep running until they are closed.
Thank you!
Can I run three screeners at the same time because I want to screen for the engulfing pattern on M5, M10 and M15.
Would this work?
timeframe(5mn|10mn|15mn)
show=0
if DOpen(0)>DHigh(1) then
if close[1]<open[1] and close>high[1] then
show=1
endif
endif
SCREENER [show=1]
JSParticipant
Veteran
Hi,
No, the above is not going to work… try the screener below…
You can then create three screeners for the different time frames…
In the Premium version you can run 20 screeners at the same time…
TimeFrame(5 mn)
C1 = DOpen(0) > DHigh(1)
C2 = Close[1] < Open[1]
C3 = Close > High[1]
Screener[C1 and C2 and C3](C3 as "Bullish Engulfing")
Thank you! I will try this as soon as I get the full version.