PureBytes Links
Trading Reference Links
|
Hello,
http://www.amibroker.com/f?categorygetsymbols
// retrive comma-separated list of symbols in watch list
list = CategoryGetSymbols( categoryWatchlist, 1);
for( i = 0; ( sym = StrExtract( list, i ) ) != ""; i++ )
{
f = Foreign( sym, "C" );
Plot( f, sym, colorRed + i );
}
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "blueinvestor" <bluesinvestor@xxxxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Saturday, January 22, 2005 7:21 AM
Subject: [amibroker] Plot ALL tickers in a group
>
>
> I know this may sound silly, but I am looking to have overlapping
> charts from a group of tickers.
>
> What I would like to do is programatically plot them rather than
> 'hard' code each and every one. Is there some way to iterate through
> the ticker list in a group and plot them on a chart?
>
> Thanks in advance,
> Peter
>
>
>
>
>
>
> Check AmiBroker web page at:
> http://www.amibroker.com/
>
> Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> 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/
|