+91-0000000000

}

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

Ichimokku Edited

 Integrating Amibroker data feed insights into modified Ichimoku indicators enhances market analysis. An Amibroker AFL tailored to Ichimokku Edited allows traders to employ customized indicators for more precise trade entries and exits.

/SL = ( HHV( H, 22 ) + LLV( L, 22) )/2;
TL = ( HHV( H, 7) + LLV( L, 7 ) )/2;
DL = Ref( C, 22 );
Span1 = Ref( ( SL + TL )/2, -22 );
Span2 = Ref( (HHV( H, 44) + LLV(L, 44))/2, -22);
High=H;
Close=C;
Low=L;
TL=TL;
SL=SL;
DL=DL;
Span1=Span1;
Span2=Span2;
TLH=(TL+H)/2;
TLC=(TL+C)/2;
SLH=(SL+H)/2;
SLC=(SL+C)/2;
Span1=Span1;
Span2=Span2;

MaxGraph = 6;
GraphXSpace = 15; /* create empty space of 15% top and bottom of chart */

Plot(SL,"SL",colorBlue,styleThick); // standard, base, or kijun-sen line
Plot(TL,"TL",colorRed,styleThick); // turning, conversion, or tenkan-sen line
//Plot(DL,"DL",colorBlack,styleLine); // delayed, lagging, or chikou span
Plot(Close,"Close",colorWhite,styleLine,styleThick); // price close




Buy= Cross(C , TL ) ; 
Sell=Cross(TL, C ) ; 
 Equity(1,0);
//AlertIf( Buy, "Sound C:\\Windows\\Media\\Ding.wav","Buy",3);
//AlertIf( Sell, "Sound C:\\Windows\\Media\\Ding.wav","Sell",3);
IIf( (Buy),PlotShapes(shapeUpArrow*Buy,colorBlue),0);
IIf( (Sell),PlotShapes(shapeDownArrow*Sell,colorRed),0);

//PlotShapes( shapeUpArrow * Buy, colorIndigo, 0, L, -15 );
//PlotShapes( shapeDownArrow*Sell, colorBrown, 0, H, -15 );
 


Title = "{{NAME}} - {{INTERVAL}} {{DATE}} - Ichimokku -11: {{VALUES}}";

_SECTION_BEGIN("Volume");
Plot( Volume, _DEFAULT_NAME(), ParamColor("Color", colorBlueGrey ), ParamStyle( "Style", styleHistogram | styleOwnScale | styleThick, maskHistogram  ), 2 );
_SECTION_END();

Open chat
1
Hi, how can I help you?