//Hi !
//I try to calculate CCI indicator, but I receive different result.
//My calculation :
Period = 14;
Price = (H + L + C)/3;
Av = MA(Price, Period);
Diff = abs(Price - Av);
MeanDiv = MA(Diff,Period);
MyCCI = (Price - Av)/MeanDiv/0.015;
CCIDiff = MyCCI/CCI(14);//??????
Plot(CCIDiff,"CCI Diff",colorBlue,styleDashed|styleOwnScale,-2,2);
//What's Wrong ?
Boris.