PureBytes Links
Trading Reference Links
|
Hello,
Just a note: for clearing up non-traded stocks you may also
use Tools->Cleanup database (this uses a Cleanup.js script presented
in the newsletter)
Best regards,
Tomasz Janeczko
===============
AmiBroker - the comprehensive share manager.
http://www.amibroker.com
----- Original Message -----
From: <traders10@xxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Monday, September 17, 2001 7:42 PM
Subject: [amibroker] deleting a watchlist
> Here is an exploration to help others that want to find or delete
> stocks that do not have current data. Thanks to Tomasz and Dimitris.
>
> Search keys: deleting stocks in a watchlist, find stocks that do not
> have current data
>
> Cheers
> Trader
>
> exploration follows
> ***********************
>
> /* Stocks with old data_e.afl: find stocks that do not have current
> data. written by Traders10, 17 Sep 2001 */
>
> numcolumns = 1;
>
> /* use if the stock was updated, but did not trade */
> /*
> filter = ValueWhen( datenum() == 1010907, close );
> filter2 = IIF( IsEmpty( filter ), 1, 0);
> column0 = filter2;
> */
>
> /* use if you did not update some stocks ie: no data past a certain
> date */
> L1 = LastValue(DateNum());
> filter = L1 < 1010907;
> column0 = L1;
>
> /*
> Save the results to a watchlist. Right click on results table, save.
> To delete these stocks use
> Stock / Organize Assignments / Watchlists
> select all symbols in the left window and click the delete button.
> */
>
>
>
>
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
|