Auto Skip or Auto viewing charts as slide show in Amibroker?

#11
Very very crude first version that will cycle thru all the tickers listed in a string; I am basing this on the value of a second, but you may use something else to control the cycle. Each ticker will be shown for 10 seconds.

RequestTimedRefresh( 1 );
StrTicker = "ACC,ACCELYA,ABIRLANUVO,BEL,IDEA,BANKBARODA";
TickerCount = StrCount(StrTicker, ",");
CurrentTicker = int (int( Now( 4 ) % 100 ) / 10);
nm = StrExtract(StrTicker, CurrentTicker);
PlotForeign(nm, nm, colorBlack, styleCandle);

Hi,

Jahapanah Tusi GR8 Ho ...speechess...really great work....


Regards,
Kedarnath
 

mastermind007

Well-Known Member
#12
Sir,
Advise, where to copy these codes in AFL at top or anywhere?
I cannot answer that question without knowing your purpose and your afl that you intend to use it with. As you can see, all I did was plotted plain B&W candlestick, but you are more likely to have something else more elaborate.

In my example, ticker names were in a string. For daily use, you'd be better off with a specially made watch list.
 
Last edited:
#16

Similar threads