Skip to main content

Animated Background for Amibroker (AFL)

NFTRADER about 16 years ago Amibroker (AFL)

  • Rating:
    4 / 5 (Votes 2)
  • Tags:
    amibroker, background

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.