+91-0000000000

}

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

Coppock Curve CCT

Utilizing Amibroker data and free data feeds, traders can create the Coppock Curve CCT indicator. This oscillator helps in identifying potential changes in market sentiment and can be fine-tuned using AFL code for enhanced accuracy and strategy development.

_SECTION_BEGIN("Coppock Curve CCT");
/* 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?