Hi could i get some code written for a Coppock curve settings 14,11,70 with an exponential moving average setting 12 added to it and also code for a Stochastic RSI setting 70.
cheers
Pleidian
Here is the code for the Coppock curve with your desired settings:
a = ROC[14](close)
b = ROC[11](close)
coppock = weightedaverage[70](a+b)
avg = average[12,1](coppock)
RETURN coppock as "Coppock curve", 0 as "0 level", avg as "average of coppock"
About the Stochastic RSI, you can get one there: https://www.prorealcode.com/prorealtime-indicators/stochastic-rsi/
Thank you Nicolas..But.. when i go to write code, a window pops up and says stochastic rsi is not available on pro builder.
cheers
Pleidian
Yeah sorry got that stochastic rsi cheers
P
Nicolas it appears that the Stochastic RSI code you gave me is for Stochastic, not Stochastic RSI?????
P
It’s the Stochastic of a RSI.