PureBytes Links
Trading Reference Links
|
Hi Conrad,
Welcome to the forum!
If you set the range to 'n last quotations = 1' then this forumla will
check the most recent bar against the filter criteria. You might also
want to think about checking for an average volume rather than the
volume of a single bar i.e ma( volume, 5 ) is the 5 day average.
Filter = (Close >= 5
AND Close <= 20)
AND (Volume >= 250000
AND Volume <= 750000);
AddColumn( Close, "Close " );
AddColumn( Open, "Open " );
AddColumn( High, "High " );
AddColumn( Low, "Low " );
AddColumn( Volume, "Volume " );
Regards,
William Peters
www.amitools.com
Thursday, October 28, 2004, 12:18:07 AM, you wrote:
CS> I'm new to Amibroker and have a question a new person would ask. :)
CS> Could someone please explain how to do the MetaStock equivalent of filtering?
CS> My goal is to filter the stock price from $5 to $20 and the
CS> volume .25 - .75 million shares traded
CS> per day.
CS> Thanks for the help!
CS> BTW, the CFS3 in my subject line is so that the filter will
CS> move it to a separate folder than the
CS> other posts in this group. Please do not remove it. Thanks!
------------------------ Yahoo! Groups Sponsor --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|