Breakout screener problem

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #43229 quote
    Henchey
    Participant
    Junior

    Hello, apologies if this has been asked before but I’ve just found the forum. I have based this on a proscreener offered free on the prorealtime site.

    I’ve tweaked it a bit, It’s a code for searching for a close above the previous [n] bars high. It works fine on the daily timescale, but not when running it on the weekly timeframe, but I can’t see the problem. Could someone be kind enough to point out the problem? Thanks:

     

    High10 = Highest[10](High)
    c1 = (close > High10[1])
    
    indicator1 = Average[20](Volume)
    c2 = (indicator1 >= 450000.0)
    c3 = (volume > indicator1)
    c4 = close > open
    criteria = volume / indicator1
    
    SCREENER[c1 AND c2 AND c3 AND c4] (criteria AS"Vol Gain")
    #43245 quote
    Nicolas
    Keymaster
    Master

    For clarity of messages on ProRealCode’s forums, please use the “insert code PRT” button to separate the text of the code part! Thank you! <<

    Because one of your condition is not met.

    Be aware that if you are using the free “end of day” version, results of screeners are delayed.

    #43255 quote
    Henchey
    Participant
    Junior
    High10 = Highest[10](High)
    c1 = (close > High10[1])
    
    indicator1 = Average[20](Volume)
    c2 = (indicator1 >= 450000.0)
    c3 = (volume > indicator1)
    c4 = close > open
    criteria = volume / indicator1
    
    
    SCREENER[c1 AND c2 AND c3 AND c4] (criteria AS"Vol Gain")

    Sorry Nicolas, is that any better?

    Also which condition is not met?

    Thanks

    Henchey

    #43269 quote
    Nicolas
    Keymaster
    Master

    I don’t know what cause your problem since I get some results myself (example attached for NYSE,NASDAQ and EURONEXT stocks) on weekly timeframe.

    stocks-screeners-weekly.jpg stocks-screeners-weekly.jpg
    #43297 quote
    Henchey
    Participant
    Junior

    Ok thanks for looking Nicolas. I think you’re right, on my system it might be the end of day issue affecting this on a weekly scan.

     

    Regards

    Pete

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

Breakout screener problem


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
Henchey @henchey Participant
Summary

This topic contains 4 replies,
has 2 voices, and was last updated by Henchey
8 years, 6 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 08/15/2017
Status: Active
Attachments: 1 files
Logo Logo
Loading...