PureBytes Links
Trading Reference Links
|
<FONT color=#0000ff
size=2>Your second line replaces what ever is in filter with the new value:
LLV(Volume,10) > 500000;
<FONT face=Arial color=#0000ff
size=2>
Do you
see that?
<FONT face=Arial color=#0000ff
size=2>
What
you need to do is add the result of the second test in the second line to
the restuls of the 1st test. To do that you use the "And"
operator.
<FONT face=Arial color=#0000ff
size=2>
Thus
you would get:
<FONT
face="Courier New" color=#000000 size=3>
<FONT
face="Courier New" color=#000000 size=3>Filter = Close > 3.00 AND Close <
40.00;Filter = Filter And LLV(Volume,10) > 500000;AddColumn
(Close,"close");
<FONT
face=Tahoma size=2>-----Original Message-----From: emptyhead_77
[mailto:gms_clan@xxxxxxxxxxx] Sent: Saturday, November 22, 2003
7:08 PMTo: amibroker@xxxxxxxxxxxxxxxSubject: [amibroker]
explore not working right for me :(Filter = Close
> 3.00 AND Close < 40.00;Filter = LLV(Volume,10) >
500000;AddColumn (Close,"close");should produce stocks that are
greater than $3 and less than 40 and volume over last 10 days higher than
500,000 but alas im getting stocks that are $.2 and over $90 so not sure
bout thatSend
BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
Yahoo! Groups Sponsor
ADVERTISEMENT
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|