PureBytes Links
Trading Reference Links
|
Ben
I tested your plan BUT if I use the C<EMA200 condition I do not
select ANY security. So it is inside {}
ColA
====
EMA200:=Mov(C,200,E);
EMA100:=Mov(C,100,E);
EMA50:=Mov(C,500,E);
EMA20:=Mov(C,20,E);
cond:= C>EMA100 AND C>EMA50 AND C>EMA20 { AND C<EMA200 };
cond;
Filter
======
ColA<>0
b> Filter out all stocks that are above their
b> 200 day
b> 100 day
b> 50 day
b> 20 day moving average
b> and you will automatically get only those that are in an uptrend.
b> you can also pplay around and e.g. select stocks that are below their
b> 200 day MA but positive above all the other MA - these are possible
b> reversal candidates that might experience strong appreciation when
b> they manage to stay above their 200 d MA.
b> Also, you can of course adjust the day lengths - 144 instead of 100 or
b> 233 or 200 (Fibonacci numbers).
b> Play around - it is a powerful tool.
b> Best Ben
b> Yahoo! Groups Links
Pablo Bozzolo
---
Contact info:
Movil: 221 5384617
E-mail: italoarg76@xxxxxxxx
MSN: italoarg76@xxxxxxxxxxx
ICQ: 77207033
------------------------ Yahoo! Groups Sponsor --------------------~-->
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|