PureBytes Links
Trading Reference Links
|
I pull a number of entries using this scan:
---------------------------------------------------
TimeFrameSet(inWeekly);
WEEKLYUT = MA(C,20) > MA(C,50) AND MA(C,50) > MA(C,100) AND
MA(C,100) > MA(C,200) AND MA(C, 200) > MA(C,205);
TimeFrameRestore();
-------------------------------------------------
However, now if I change the the last average,
i.e. from ma(C,205)--> ma(c,210)
So the scan now is :
-------------------------------------------------
WEEKLYUT = MA(C,20) > MA(C,50) AND MA(C,50) > MA(C,100) AND
MA(C,100) > MA(C,200) AND MA(C, 200) > MA(C,210);
-------------------------------------------------
i get no hits. I know there are a number of candidates from visually
inspecting a ton of charts. For example CRDN & AAPL are example
charts that should be found.
Anyone know what is wrong? Is there an internal limit on these weekly
moving averages that I need to be aware of?
Btw, I'm linked into tc2000 which has enough data to support these
weekly moving averages.
------------------------ Yahoo! Groups Sponsor --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/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/
|