Cci in afl

#1
Hi

i heard, that cci (buy at day low, sell at day high concept) is available, and few persons sell that for 7 lakh rupees, for just one indicator

is it real??/

kindly help by providing cci based afl for identifying almost day high/day low in markets

thanks in advance
 
#2
Hi

i heard, that cci (buy at day low, sell at day high concept) is available, and few persons sell that for 7 lakh rupees, for just one indicator

is it real??/

kindly help by providing cci based afl for identifying almost day high/day low in markets

thanks in advance

Smooth CCI AFL Below :-

_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);
Plot(Y2,"Smooth CCI",colorOrange,styleDots,4);
Plot(Z2,"Signal",colorDarkYellow,4);
Plot(100,"",colorRed,styleThick);//styleNoLabel
Plot(0,"",colorWhite,styleDashed);//styleNoLabel);
Plot(-100,"",colorGreen,styleThick);//styleNoLabel);

Buy=x1>y2 AND x1>z2;
Sell=x1<y2 AND x1<z2;
Buy=ExRem(Buy,Sell);
Sell=ExRem(Sell,Buy);
PlotShapes(IIf(Buy, shapeUpArrow, shapeNone),colorGreen);
PlotShapes(IIf(Sell, shapeDownArrow, shapeNone),colorRed);
_SECTION_END();




_SECTION_BEGIN("Background_Setting");
SetChartBkGradientFill( ParamColor("BgTop", colorBlack),




ParamColor("BgBottom", colorBlack),ParamColor("titleblock",colorDarkTeal ));
_SECTION_END();








Simple traditional CCI AFL BELOW TOO :-

periods = Param( "Periods", 14, 2, 200, 1 );
Plot( CCI( periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
 

Similar threads