Title: Re: [amibroker] Is it possible to automatically switch between charts?
Play with this:
RefreshRate = Param("Chart Update rate",0,0,10,1);
RequestTimedRefresh( RefreshRate );
TimerTick = Status("RedrawAction");
WLNum = Param("WatchList Number",0,0,64,1);
MaxTickerNum = Param("Max. Ticker Number",50,1,100,1);
List = CategoryGetSymbols( categoryWatchlist, WLNum );
TickerNum = StaticVarGet("TickerNumber");
if( IsNull( TickerNum ) ) StaticVarSet("TickerNumber", 0);
if( TimerTick )
{
TickerNum = StaticVarGet("TickerNumber");
if( TickerNum <= MaxTickerNum ) StaticVarSet("TickerNumber",++TickerNum);
else StaticVarSet("TickerNumber", 0);
}
Ticker = StrExtract( List, Tickernum);
SetForeign(Ticker);
Plot(C,"",1,128);
Title = "\nSlideShow-001\n#"+NumToStr( TickerNum,1.0,False) +" "+Ticker;
Thursday, November 27, 2008, 6:38:00 AM, you wrote:
> Hi,
> Maybe someone knows whether it is possible to create a "slide show"
> from tickers in a watchlist?
> I am limited with the number of monitors but was wonder if I could
> program (probably in VB) a slide show. ie one chart window shows one
> ticker and in 10seconds another and in the next 10 seconds another,
> one by one from a selected watchlist.
> I know tha AB doesn't have that option so I was wonder whether there
> is a way to program it as a script.
> ------------------------------------
> **** IMPORTANT ****
> This group is for the discussion between users only.
> This is *NOT* technical support channel.
> *********************
> TO GET TECHNICAL SUPPORT from AmiBroker please send an e-mail directly to
> SUPPORT {at} amibroker.com
> *********************
> For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
> http://www.amibroker.com/devlog/
> For other support material please check also:
> http://www.amibroker.com/support.html
> *********************************
> Yahoo! Groups Links
> <*> To visit your group on the web, go to:
> http://groups.yahoo.com/group/amibroker/
> <*> Your email settings:
> Individual Email | Traditional
> <*> To change settings online go to:
> http://groups.yahoo.com/group/amibroker/join
> (Yahoo! ID required)
> <*> To change settings via email:
> mailto:amibroker-digest@xxxxxxxxxxxxxxx
> mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
> <*> To unsubscribe from this group, send an email to:
> amibroker-unsubscribe@xxxxxxxxxxxxxxx
> <*> Your use of Yahoo! Groups is subject to:
> http://docs.yahoo.com/info/terms/
__._,_.___
**** IMPORTANT ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
*********************
TO GET TECHNICAL SUPPORT from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
*********************
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
*********************************
__,_._,___
|