PureBytes Links
Trading Reference Links
|
Herman
This may do the trick
procedure EraseAndFillWL(WLNumber, Filter)
{
s = 0;
Actn = 0;
if(Actn = Status("action") == 4)
{
if( s = Status("stocknum") == 0 )
{
List = CategoryGetSymbols (categoryWatchlist, wlnumber);
for(i = 0; (Symbol = StrExtract(List, i)) != ""; i++)
{
CategoryRemoveSymbol (Symbol,categoryWatchlist, wlnumber);
}
}
}
if( LastValue (Filter))
{
CategoryAddSymbol( "", categoryWatchlist, WLNumber);
}
}
wlnumber = CategoryFind("My Watch List", categoryWatchlist );
Filter = ....
EraseAndFillWL(WLNumber, Filter);
Regards
Ian
------------------------------------
Please note that this group is for discussion between users only.
To get 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/
|