+91-0000000000

}

Monday – Friday : 9:00 AM – 6:30 PM

CCT Coppock Curve

CCT Coppock Curve is an indicator that can be effectively analyzed with free Amibroker data feed. It calculates the Coppock Curve, which is used to gauge long-term trend changes in the market. Utilizing free Amibroker data enhances the precision of this analysis, helping traders make informed decisions regarding potential long-term investment opportunities.

/* CCT Coppock Curve
**
** Originally developed by Steve Karnish 
** http://www.cedarcreektrading.com
**
** AFL translation by Peter Gialames
**
** Set scaling: Automatic
** Grid: Middle, Level 0
*/

Graph0=(ROC(Close,14 )*10 + ROC(Close,11)*10 +   
ROC(Ref(Close,-1),14)*9 +   ROC(Ref(Close,-1),11)*9 +  
ROC(Ref(Close,-2),14)*8 +   ROC(Ref(Close,-2),11)*8 +  
ROC(Ref(Close,-3),14)*7 +   ROC(Ref(Close,-3),11)*7 +  
ROC(Ref(Close,-4),14)*6 +   ROC(Ref(Close,-4),11)*6 +  
ROC(Ref(Close,-5),14)*5 +   ROC(Ref(Close,-5),11)*5 +  
ROC(Ref(Close,-6),14)*4 +   ROC(Ref(Close,-6),11)*4 +  
ROC(Ref(Close,-7),14)*3 +   ROC(Ref(Close,-7),11)*3 +  
ROC(Ref(Close,-8),14)*2 +   ROC(Ref(Close,-8),11)*2 +  
ROC(Ref(Close,-9),14) +   ROC(Ref(Close,-9),11))/2;

_SECTION_END();

Open chat
1
Hi, how can I help you?