PureBytes Links
Trading Reference Links
|
I do not believe that you can pass variables from the custom backtest
code to the normal afl code, or even plot directly from CBT as it only
becomes active during a backtest. You need to create a composite
symbol from within the CBT.
But I wonder why you want to get the equity by this method as Ab
automatically saves this to composite ~~~EQUITY
--
Cheers
Graham Kav
AFL Writing Service
http://www.aflwriting.com
2009/5/28 Barry Scarborough <razzbarry@xxxxxxxxxxxx>:
> CurEquity is an array. Since you are setting the curEquity in a loop I think you will need to use an index, CurEquity[bar] = bo.Equity; That will fill the CurEquity array so it can be plotted correctly.
>
> Barry
>
> --- In amibroker@xxxxxxxxxxxxxxx, zeek ing <zeeking57@xxx> wrote:
>>
>> Hello all,
>> I am trying to access my account equity from the backtester and plot it on
>> the chart. Below is the code I have but I am pretty sure that it is wrong
>> but not sure why. Can anyone help???
>>
>>
>> Curequity=0;
>> SetOption("UseCustomBacktestProc", True );
>>
>> if( Status("action") == actionPortfolio )
>> {
>> bo = GetBacktesterObject();
>>
>> bo.PreProcess(); // Initialize backtester
>>
>> for(bar=0; bar < BarCount; bar++)
>> {
>> bo.ProcessTradeSignals( bar );
>>
>> CurEquity = bo.Equity;
>> }
>> bo.PostProcess();
>> }
>> Plot(CurEquity,"\nCurEquity",colorYellow,1);+
>>
------------------------------------
**** 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/
|