What is the name of this CCI?

#1
Hi Friends

Can someone tell me the name of the CCI, I am posting the Image. It is taking two values 1) AVG. period and 2) CCI period.
As there are too many CCI like Woodies,Donald Lambert,..... I wanted to know the name of this CCI which takes two values. I am looking for similar AFL.

Thanks in Advance :)
 

Attachments

jahan

Well-Known Member
#2
Hello,

I think it has no name....B'coz its the 9 period Avg(smoothing) of Common CCI which has 20 periods....

as u wanted it in AFL....its very EASY just Apply regular CCI with 20 Peiods in AMI...then Drag MA(moving Avg formula) in CCI pane after this Right click on the Pane And Change MA Params to 9(default is 15)....bingo ...thats it ...

by the way Give ur Own name to this AFL....(just kidding).

Regards,
 
#4


PHP:
_SECTION_BEGIN("Smooth CCI");
///// Smooth CCI ////// 

x=Param("CCI Period 3 - 50",14,3,50,1); 
x1=CCI(x); 
Y=Param("Smooth Factor 3 - 15",7,3,15,1); 
Y2=DEMA(x1,Y); 
//Z=Param("Signal Line 3 - 9",3,3,9,1); 
//Z2=MA(Y2,Z); 
Plot(X1,"CCI",colorDarkGrey,styleDots); 
Plot(Y2,"Smooth CCI",colorOrange,styleDots,4); 
//Plot(Z2,"Signal",colorDarkYellow,4); 
Plot(50,"",colorGreen,styleThick);//styleNoLabel 
Plot(0,"",colorWhite,styleDashed);//styleNoLabel);
Plot(-50,"",colorRed,styleThick);//styleNoLabel);
_SECTION_END();
 

Similar threads