ANIMATED AFL BACKGROUND CHART
Here is the code that will make an animated background of your chart. I made this only for fun purpose.
Here is the code. Try this.
_SECTION_BEGIN("Debarghya: AFL Coding");
for( i = 1; i < BarCount; i++ )
z = (GetPerformanceCounter()/100)%256;
anim=ColorHSB( ( i + z ) % 256, 255, 100 );
SetChartBkColor(anim);
RequestTimedRefresh(1);
SetBarFillColor( IIf( Close > Open, colorWhite, colorBlack ) );
Plot(C,"Price", colorBlack, styleCandle );
Plot(EMA(C,3),"SMA(3)", colorRed );
Plot(EMA(C,13),"SMA(13)", colorGreen );
_SECTION_END();