+91-0000000000

}

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

KPL White Line

KPL White Line AFL could be a unique indicator or visual element integrated into charts. Leveraging AmiBroker data feed, it potentially helps traders visualize specific market conditions or trends represented by the white line.

/_SECTION_BEGIN("xtl");
tgt = 35;
a = CCI(20) < -tgt;
b = CCI(20) > tgt;
state = IIf(a>b,-1,IIf(a==b,0,1));
Color = IIf(state == 0, colorWhite, IIf(state == 1, colorLime, IIf(state == -1, colorRed, 0)));

//Plot(state, "", color, styleHistogram);

SetChartOptions( 0, chartShowDates | chartShowArrows | chartLogarithmic | chartWrapTitle );
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", color, styleNoTitle |styleBar ); 
 
_SECTION_END();


Plot( Ref(MA(H,6),-4), _DEFAULT_NAME(), colorWhite, styleThick);
Plot( Ref(MA(L,6),-4), _DEFAULT_NAME(), colorWhite, styleThick);
_SECTION_END();

Open chat
1
Hi, how can I help you?