PureBytes Links
Trading Reference Links
|
Still does not work. I get a COM error if the first line, SetCustomBacktestProc("");, is included for some reason. And if I take that line out, it runs but has no effect. Exit prices remain unchanged.
--- In amibroker@xxxxxxxxxxxxxxx, Graham <kavemanperth@xxx> wrote:
>
> you still need to loop through the signals as I think you originally
> had, not trades.
> then have bo.ProcessTradeSignals( bar ); after the signal loop
> I was just trying to show the additional lines of code you needed to include
>
>
> SetCustomBacktestProc("");
>
> if ( Status( "action" ) == actionPortfolio )
> {
> bo = GetBacktesterObject();
> bo.PreProcess(); // Initialize backtester
>
> for(bar=0; bar < BarCount; bar++)
> {
> for( sig = bo.GetFirstSignal(); sig; sig = bo.GetNextSignal() )
> {
> if( sig.IsExit() )
> {
> if ( sig.IsLong() ) ExitTrue = sig.Price - Slippage;
> else ExitTrue = sig.Price + Slippage;
> sig.Price = ExitTrue;
> }
> }
> bo.ProcessTradeSignals( bar );
> }
>
> bo.PostProcess(); // Finalize backtester
> }
>
>
>
> --
> Cheers
> Graham Kav
> AFL Writing Service
> http://www.aflwriting.com
>
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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/
|