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
JSParticipant
Veteran
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”)