Screening on intraday timeframes automatically?

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #216721 quote
    marie123
    Participant
    Junior

    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!

    #216722 quote
    robertogozzi
    Moderator
    Master

    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.

    marie123 thanked this post
    #216725 quote
    marie123
    Participant
    Junior

    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.

    #216727 quote
    marie123
    Participant
    Junior

    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]
    #216729 quote
    JS
    Participant
    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")
    
    marie123 thanked this post
    #216734 quote
    marie123
    Participant
    Junior

    Thank you! I will try this as soon as I get the full version.

    JS thanked this post
Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.

Screening on intraday timeframes automatically?


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
marie123 @marie123 Participant
Summary

This topic contains 5 replies,
has 3 voices, and was last updated by marie123
2 years, 8 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 06/25/2023
Status: Active
Attachments: No files
Logo Logo
Loading...