+91-0000000000

}

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

CCI 14 2

The CCI 14 2 Amibroker AFL computes the Commodity Channel Index with a smoothing factor of 2. It provides a balance between short and medium-term trend analysis, allowing traders to adapt their strategies based on Amibroker data more effectively.

_SECTION_BEGIN("CCI");
cc_i = Param ("cci",14,2,50,1);
Short_p = Param("short period",5,1,25,1);
Long_p = Param("long period",10,1,50,1);
Cc = EMA(CCI(Cc_i),Long_p);
C2 = EMA(CCI(Cc_i),Short_P);
Plot( C2, "CCI", colorRed, styleThick  ); 
Plot( Cc, "CCI", colorBlue, styleThick  ); 

Plot(100,"",colorWhite,styleDashed);
Plot(-100,"",colorWhite,styleDashed);


Sell = Cross(Cc,C2);

Buy = Cross(C2,Cc);

PlotShapes (Buy*shapeUpArrow,colorRed);
PlotShapes (Sell*shapeDownArrow,colorRed);
  
_SECTION_END();

Open chat
1
Hi, how can I help you?