PureBytes Links
Trading Reference Links
|
Hi all,
I'm writing my first exploration for Metastock and I
was hoping someone could take a look and make sure it
does what I mean it to do. I'm looking to identify
long entries when the %R descends to -80 or more and
within 5 days of this trigger, the price closes above
the 7-day moving average and the 7-day crosses above
the 30-day. Here's my code:
Cross(Mov( CLOSE, 7, SIMPLE), Mov( CLOSE, 30, SIMPLE))
AND Cross( CLOSE, Mov(CLOSE,7,SIMPLE) ) AND
(BarsSince(WillR( 14 ) <= -80) <= 5)
If I did this correctly, I assume I will get a 1 in
column A every time the formula is true. So, in my
filter, I added "colA = 1". Is this okay?
Thanks...Jack
__________________________________
Do you Yahoo!?
Yahoo! Mail - 250MB free storage. Do more. Manage less.
http://info.mail.yahoo.com/mail_250
------------------------ Yahoo! Groups Sponsor --------------------~-->
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/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/
|