PureBytes Links
Trading Reference Links
|
--- In amibroker@xxxxxxxxxxxxxxx, "Glenn" <glennokb@xxxx> wrote:
> Hi,
>
> Is there a quicker way to get 2000 stocks into a watchlist other
then
> doing a scan using this:
>
> Buy = 1;
> Filter=1;
>
> ...and right clicking on the list and saving to a watchlist?
>
> Is there a quicker way then the above please? I want ALL my stocks
> symbols placed into a watcklist
Once you place them into your watchlist they should remain there
unless you erase them. Anyway, if you have to repeat everyday the
process you may try this:
if(LastValue(Close) > 0)
{
CategoryAddSymbol("", categoryWatchlist, 1); // add to watch list
number 1
}
Buy = 1;
Filter=1;
-Franco
------------------------ Yahoo! Groups Sponsor --------------------~-->
Yahoo! Domains - Claim yours for only $14.70
http://us.click.yahoo.com/Z1wmxD/DREIAA/yQLSAA/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/
|