PureBytes Links
Trading Reference Links
|
Hello Trader,
1. The explorer does not throw away stocks that are not up to date -
your formula does.
If you are using ValueWhen( datenum() == 1010907, close ) < 1
and the stock was not traded at all on Fri, 9/07 the ValueWhen
has an EMPTY value. Comparisons to {Empty} gives {empty} or
no signal at all.
You may consider the following day to detect stocks both non-trading and
trading below certain leve:
filter = ValueWhen( datenum() == 1010907, close ) < 1;
filter = IIF( IsEmpty( filter ), 1, filter );
2. AmiFeed - it supports loading external .TLS files now, so you can
generate the list of stocks you want to import - save it as a plain
ASCII text file with .TLS extension and tickers listed one by one in every line
- and then load this TLS file into AmiFeed everytime you want to import quotes.
Best regards,
Tomasz Janeczko
===============
AmiBroker - the comprehensive share manager.
http://www.amibroker.com
----- Original Message -----
From: <traders10@xxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Saturday, September 15, 2001 11:00 PM
Subject: [amibroker] deleting old stocks
> I am trying to identify and delete some old stocks I no longer want
> to follow. I wrote an exploration to find these stocks, which are no
> longer being updated. The desired stocks are being updated.
>
> I thought if I looked for close < $1, on Fri, 9/07 using valuewhen
> and datenum I would get a list of those stocks that are not being
> updated. Instead they do not show up at all. It seems as if the
> explorer throws out stocks that are not up to date. This might not
> be a good idea, if true.
>
> So, clever people, how do I identify these stocks and delete them
> easily from the database. (It should not be a problem in the future
> now that we can import to a watch list.)
>
> BTW, Tomasz, when are you going to add this importing feature to
> AmiFeed, which is what I use to import data?
> TIA
> Trader
>
>
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
|