[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

deleting a watchlist



PureBytes Links

Trading Reference Links

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.
*/