Anybody have this AFL .... ?

mastermind007

Well-Known Member
#5

mastermind007

Well-Known Member
#7
its color , its so cute ...........:confused:
Ravi

This one line will create the colored background like above. All you need to do is figure out RGB value for a color for which you can use freeware named colorpix.

Code:
	SetChartBkGradientFill(ColorRGB(207,253,239), ColorRGB(252,224,193));
My personal favorite combination in Amibroker is
Code:
	SetChartBkGradientFill(colorLightBlue, colorLightOrange);
It creates effect of evening sunset
 

TraderRavi

low risk profile
#9
Ravi

This one line will create the colored background like above. All you need to do is figure out RGB value for a color for which you can use freeware named colorpix.

Code:
	SetChartBkGradientFill(ColorRGB(207,253,239), ColorRGB(252,224,193));
My personal favorite combination in Amibroker is
Code:
	SetChartBkGradientFill(colorLightBlue, colorLightOrange);
It creates effect of evening sunset
hi MM007, thanks for your color code......now ATP AFL looks like this, after inserting your code....... red ATP looks clear but can I make the green ATP line color more dark, also at the left top, ATP is written in green, it sud be black.

_SECTION_BEGIN("ATP");
SetChartBkGradientFill(ColorRGB(207,253,239), ColorRGB(252,224,193));
B=Volume;
A=Avg;
Value=B*A;
Barsfromtodaybegin = 1 + BarsSince( Day() != Ref(Day(), -1));
Totalvalue=Sum(Value,Barsfromtodaybegin);
Totalvolume=Sum(V,Barsfromtodaybegin);
ATP=(Totalvalue/Totalvolume);
ColorATP=IIf(ATP>Ref(ATP,-1),colorBrightGreen,colorRed);
Plot(ATP,"ATP",colorATP,styleThick);
_SECTION_END();

 
Last edited:

Similar threads