PureBytes Links
Trading Reference Links
|
I'm trying the backtester by using simple systems. I want to make sure
that I use the backtester in the same way that I would trade a real
system. I use end-of-day data.
When I see the end-of-day buy signal, I want to buy at next day's Open.
The system is:
Buy = Cross( Close, EMA( Close, 45 ) ) ;
----------------------------------------------------
To plot the Buy signals, I use:
Buy = Cross( Close, EMA( Close, 45 ) ) ;
Plot( Buy, "Buy", colorBlack ) ;
----------------------------------------------------
To plot the Buy arrows, I use:
Buy = Ref( Cross( Close, EMA( Close, 45 ) ), -1 ) ;
PlotShapes( Buy * shapeUpArrow, colorGreen );
Plot(Close, "Close",colorBlack,styleBar);
----------------------------------------------------
In the code that I submit to the backtester, I use:
Buy = Ref( Cross( Close, EMA( Close, 45 ) ), -1 ) ;
-----------------------------------------------------
Now here is the critical question. I believe that the code handles the
1-bar delay between the Buy signal and the trade. Therefore, I set the
backtester "Buy delay" = 0.
Is that correct?
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|