PureBytes Links
Trading Reference Links
|
Thank you, CS, but how do I get at the equity curve that results from
a backtest? Where is it store?
ts
--- In amibroker@xxxxxxxxxxxxxxx, "cstrader" <cstrader232@xxxx> wrote:
>
> Occurred to me later that addtocomposite might also work for you.
>
> ----- Original Message -----
> From: "cstrader" <cstrader232@xxxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Friday, January 13, 2006 11:14 AM
> Subject: Re: [amibroker] Saving equity graph values
>
>
> > Try using this AFL which Graham has created for us.
> >
> > /*
> > Export intraday and EOD data to TXT files
> > One file for each stock
> > In the first line insert the directory you want to save them to,
make sure
> > the directory exists
> > Select your charts to export with the "Apply to" filter in AA
window
> > Select the timeframe period you want to save as using the
AA "Settings"
> > Press Scan button
> > by Graham Kavanagh 05 Feb 2004
> > */
> >
> > fh = fopen( "c:\\mydocs\\program files\\amibroker\\data
files\\ASCII
> > BACKUPS\\"+Name()+".txt", "w");
> > if( fh )
> > {
> > fputs( "Ticker,Date,Time,Open,High,Low,Close,Volume \n", fh );
> > y = Year();
> > m = Month();
> > d = Day();
> > r = Hour();
> > e = Minute();
> > n = Second();
> >
> > for( i = 0; i < BarCount; i++ )
> > {
> > fputs( Name() + "," , fh );
> > ds = StrFormat("%02.0f-%02.0f-%02.0f,",
> > y[ i ], m[ i ], d[ i ] );
> > fputs( ds, fh );
> >
> > ts = StrFormat("%02.0f:%02.0f:%02.0f,",
> > r[ i ],e[ i ],n[ i ] );
> > fputs( ts, fh );
> >
> > qs = StrFormat("%.4f,%.4f,%.4f,%.4f,%.0f\n",
> > O[ i ],H[ i ],L[ i ],C[ i ],V[ i ] );
> > fputs( qs, fh );
> > }
> >
> > fclose( fh );
> > }
> >
> > Buy = 0;
> > ----- Original Message -----
> > From: "techsmart" <mric@xxxx>
> > To: <amibroker@xxxxxxxxxxxxxxx>
> > Sent: Friday, January 13, 2006 10:39 AM
> > Subject: [amibroker] Saving equity graph values
> >
> >
> >> Is there a way to save the values from the equity graph that
results
> >> from a system test?
> >>
> >> I'd like to be able to save the equity curve to a csv file for
later
> >> use in Excel, or to plot in AB. What I really want to do is run
> >> multiple tests and save the equity curve data and then be able to
> >> overlay a bunch of equity curves for comparison purposes.
> >>
> >> ty
> >>
> >> ts
> >>
> >>
> >>
> >>
> >>
> >>
> >> 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 other support material please check also:
> >> http://www.amibroker.com/support.html
> >>
> >>
> >> Yahoo! Groups Links
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >
> >
> >
> >
> > 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 other support material please check also:
> > http://www.amibroker.com/support.html
> >
> >
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> >
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/GHeqlB/TM
--------------------------------------------------------------------~->
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 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/
<*> 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/
|