PureBytes Links
Trading Reference Links
|
Hi,
First you can easily replace your filter condition
by
filter = 1;
because
filter = dailyreturn AND weeklyreturn AND
monthlyreturn and quarterlyreturn AND yearlyreturn;
does not really filter anything except the case when one of
those returns is zero.
Please remember that filter condition should be boolean- true
or false, so if you want to
get only stocks with positive daily and weekly returns you
should write:
filter = dailyreturn > 0 AND weeklyreturn >
0;
The differences: your observations are true.
Best regards,Tomasz Janeczko===============AmiBroker - the
comprehensive share manager.<A
href="">http://www.amibroker.com
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
David
Holzgrefe
To: <A title=amibroker@xxxxxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Thursday, May 31, 2001 1:46
PM
Subject: [amibroker] quick view
explore
Hi TJ and others ,
Enclosed is a explore I wrote using the info you
sent me on quick view periods,
whilst its not a perfect match you will see it
comes close , but I was wondering why it didn't match closer ,
something to with the no of days in the search
compared to the quick view date fields maybe ?
also there are a few stocks or option missing
from my list yet it was tested on the same data base .. I can assume thathas
something to do with the stock having ceased trading but q view still includes
it ?
I think I have already answered the Question
myself but just wanted to confirm it
Thanks David
Your
use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
|