PureBytes Links
Trading Reference Links
|
try including, you could be limited by the bars loaded at start up
setbarsrequired(10000,10000);
On Wed, 26 Jan 2005 03:10:41 -0000, voyager_3k <voyager3k@xxxxxxxxxxx> wrote:
>
>
> 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.
>
>
> 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
>
>
>
>
>
--
Cheers
Graham
http://e-wire.net.au/~eb_kavan/
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/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/
|