hi gang,
does anyone of you have a smoother and zero lag CCI for metatrader or tradestation? i am pretty sure i have heard about it, but can't find it. thanks for your help.
Hello
in my experience all smoothning creates lag. There is one CCI that I can think of where eKam a respected member of the TradeStations group. Use standard division to prevent the over reaction of the CCI.
The TradeStations code goes like this:
___________________________________________________________
Function name:eKamCCI
input:
Price ((h+l+c)/3),
Length (14),
Scale (245),
LineUpper(100),
LineLower(-100);
plot1(eKamCCI(Price,Length,Scale),"eKamCCI");
plot2(LineUpper,"Upper");
plot3(LineLower,"Lower");
plot4(0,"0");
{ Alert criteria }
if Plot1 crosses over LineLower then
Alert( "CCI crosses over " + NumToStr(LineLower,0) )
else if Plot1 crosses under LineLower then
Alert( "CCI crosses under " + NumToStr(LineLower,0) )
else if Plot1 crosses over LineUpper then
Alert( "CCI crosses over " + NumToStr(LineUpper,0) )
else if Plot1 crosses under LineUpper then
Alert( "CCI crosses under " + NumToStr(LineUpper,0) )
else if Plot1 crosses over 0 then
Alert( "CCI crosses over zero" )
else if Plot1 crosses under 0 then
Alert( "CCI crosses under zero" );
A truly wise man, always has more questions than answers.