PureBytes Links
Trading Reference Links
|
You wrote:
Filter=Cross(PDI(14),ADX(14) ) AND Volume >200000 AND MA(Volume,7)
>MA(Volume,14) ;
Buy=Cross(PDI(14),MDI(14));
Sell=Close<HHV(Close,5) ;
Buy=ExRem(Buy,Sell);
Sell=ExRem(Sell,Buy);
Have you tried changing your buy condition to something simpler like:
Buy = Filter;
this will include all your filter conditions.
Also I find when filtering out illiquid stocks to scan/explore using MA(volume,x) is better, to avoid low volume stocks with volume spikes appearing in may searches (unless this is what is you need).
Regards
ChrisB
murthysuresh <money@xxxxxxxxxxxxxx> wrote:
Here is my parameters
Filter=Cross(PDI(14),ADX(14) ) AND Volume >200000 AND MA(Volume,7)
>MA(Volume,14) ;
Buy=Cross(PDI(14),MDI(14));
Sell=Close<HHV(Close,5) ;
Buy=ExRem(Buy,Sell);
Sell=ExRem(Sell,Buy);
For me , it returns stocks where volume is 2000 per day. i am not
sure if filter only parses the first condition?
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups SponsorADVERTISEMENT
---------------------------------
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 the Yahoo! Terms of Service.
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
[Non-text portions of this message have been removed]
------------------------ 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/
|