PureBytes Links
Trading Reference Links
|
The formula is correct.
Check your Backtester periodicity setting.
Regards,
Bob
-----Original Message-----
From: alannortham [mailto:anortham@xxxxxxx]
Sent: Friday, November 05, 2004 11:02 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Re: Need help with Explore code
--- In amibroker@xxxxxxxxxxxxxxx, "Bill Barnard" <wbarnard@xxxx>
wrote:
>
> --- In amibroker@xxxxxxxxxxxxxxx, "alannortham" <anortham@xxxx>
wrote:
> >
> > I tried the following code which is suppose to filter my stocks
> when
> > the short term ema is above the longer term ema for the last 30
> > days. However when I run it, it gives an error message saying I
> need
> > to define a NumColumn variable. I know how to add a new column
but
> I
> > am not sure what the array needs to be. Can anyone help me get
> this
> > code working?
> >
> > <==Start Code==>
> > st=ema(c,10);
> > >lt=ema(c,20);
> > >filter=sum(st>lt,30)==30;
> > <==End Code==>
> >
> > Thanks,
> > Alan
>
>
>
> Hi Alan,
>
> Try this:
>
> st=EMA(C,10);
> lt=EMA(C,20);
> Filter=Sum(st>lt,30)==30;
> AddColumn(C, "Close");
>
>
> Bill
Thanks Bill for the response and for the code improvement. Adding
the AddColumn gets rid of the error message however, when I run the
scan it lists stock tickers who's short term ema is above the longer
term ema as well as stock tickers who's long term ema is above the
short term ema. There still needs to be some code improvement so
that only the stock tickers are listed who's short term ema is
currently above the long term ema and has been for at least the last
30 day's. Any ideas?
Alan
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
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/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/
|