Bullish and Bearish Forex Screeners

Forums ProRealTime English forum ProScreener support Bullish and Bearish Forex Screeners

  • This topic has 1 reply, 2 voices, and was last updated 1 year ago by avatarJS.
Viewing 2 posts - 1 through 2 (of 2 total)
  • #212802

    Hello everyone,

    I was reading this post with interest:

    https://www.prorealcode.com/prorealtime-market-screeners/bullish-bearish-screeners-based-3-indicators/

    Could you please help me integrate the PRT indicator Coppock Curve into the two screener codes (bullish and bearish)?

    Thank you in advance,

    Edo

    #212896
    JS

    Hi,

    To be able to use the screeners, you must first create the indicator that is called up (Call)…

    For example:

    Return WeightedAverage[14](ROC[11] + ROC[10]) as “Coppock-Indicator”

    You can now call up this indicator (Call “Coppock-Indicator) in your screener…

    //Forex Bullish Screener – use with 4 hour Mini FX Charts

    indicator1 = CALL “Coppock-Indicator”

    c1 = (indicator1 > indicator1[1])

    indicator3 = MACDline[12,26,9](close)

    c2 = (indicator3 > indicator3[1])

    indicator5 = Stochastic[14,3](close)

    c3 = (indicator5 > 20)

    c4 = (indicator5 < 40)

    c5 = (indicator5 > indicator5[1])

    SCREENER[c1 AND c2 AND c3 AND c4 AND c5] (Variation AS “%Chg prev bar”)

    1 user thanked author for this post.
Viewing 2 posts - 1 through 2 (of 2 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login