Animated Background for Amibroker (AFL)
NFTRADER about 16 years ago Amibroker (AFL)
This AFL is interesting. Background keeps changing colors.
Indicator / Formula
Copy & Paste Friendly
_SECTION_BEGIN("SkyBlue's Animated BkGround");
for( i = 1; i < BarCount; i++ )
z = (GetPerformanceCounter()/100)%256;
anim=ColorHSB( ( i + z ) % 256, 255, 100 );
SetChartBkColor(anim);
RequestTimedRefresh(1);
_SECTION_END(); 1 comments
Leave Comment
Please login here to leave a comment.
thanks