Please edit PreScreener

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #229467 quote
    osnxp7osnxp7
    Participant
    New

    hi

    see stocks that have risen by at least 5%

    The price of the stock is above 1 less than 10

    fraicheursignal = -1
    
    volumeminimum = 10000
    
    IF fraicheursignal=-1 AND Volume > 3*(Average[20](Volume)) AND volume > volumeminimum THEN
    
    fraicheursignal = 0
    
    ENDIF
    
    IF fraicheursignal=-1 AND Volume[1] > 3*(Average[20](Volume)[1]) AND volume > volumeminimum THEN
    
    fraicheursignal = 1
    
    ENDIF
    
    IF fraicheursignal=-1 AND Volume[2] > 3*(Average[20](Volume)[2]) AND volume > volumeminimum THEN
    
    fraicheursignal = 2
    
    ENDIF
    
    IF fraicheursignal=-1 AND Volume[3] > 3*(Average[20](Volume)[3]) AND volume > volumeminimum THEN
    
    fraicheursignal = 3
    
    ENDIF
    
    c1 = (fraicheursignal>-1)
    
    SCREENER[c1](fraicheursignal AS "Fraîcheur du signal")
    
    #229473 quote
    JSJS
    Participant
    Master

    Hi,

    What exactly do you want?

    Does the screener need to be adjusted or is it good?

    Should the new conditions (least>5%, Close>1 and Close<10) be added to the “old” screener?

    Or does your screener not work at all and needs an update including the new conditions…?

    #229474 quote
    osnxp7osnxp7
    Participant
    New
    add (least>5%, Close>1 and Close<10)
    #229481 quote
    JSJS
    Participant
    Master

    Hi,

    You can add the following conditions…

    C2=(Close-Close[4])/Close[4]*100>5

    You look over the last 4 bars to see if the price has risen more than 5%, you can change the 4 to a number according to your needs…

    C3=Close>1 and Close<10

    See if the price is greater than 1 and less than 10

    SCREENER[C1 and C2 and C3]

    Use all the conditions in your screener

    #229488 quote
    osnxp7osnxp7
    Participant
    New
    thank you for helping me
    JS thanked this post
Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.
ProRealAI ProRealAI New

Stuck on this ProBuilder code?

Describe what this topic is trying to build, in plain English, and ProRealAI writes the ProRealTime™ indicator, screener or system for you.

Available in 7 languages
Try ProRealAI

Please edit PreScreener


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
osnxp7 @osnxp7 Participant
Summary

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

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 03/08/2024
Status: Active
Attachments: No files
ProRealCode ProRealCode
Loading...