PureBytes Links
Trading Reference Links
|
If it's OK to rename after each backtest (i.e. you're not running
some "batch" of backtests, then the following may help. After each
backtest, run this procedure via scan:
// Rename ~~~Equity////
procedure RenamePFEquity(Naam,Newgr)
{
SetForeign("~~~EQUITY", True, True );
PFEquity=C;
PFCash=L;
RestorePriceArrays();
AddToComposite(PFEquity,Naam,"C");
AddToComposite(PFCash,Naam,"L");
CategoryAddSymbol( Naam, categoryGroup, NewGr );
}
Basically, it saves the last ~~~Equity as "Naam" in the designated
Group, called NewGr. After View->Refresh all it should appear there.
Hope this helps.
PS
--- In amibroker@xxxxxxxxxxxxxxx, b <b519b@xxxx> wrote:
> I use the renaming method to save the ~~~Equity output.
>
> However, with my 30,000 plus stock database, there is a
> delay of 1 to 2 minutes each time I rename it.
>
> My guess is that AB has to resort various internal lists
> before it can do a ticker list refresh.
>
> Is there a quicker way to save the results?
>
>
>
> --- Graham <kavemanperth@xxxx> wrote:
>
> > Have you tried renaming the ticker each time
> >
> >
> > On Sun, 09 Jan 2005 05:00:09 -0000, Pat Finnegan
> > <PFinnegan1@xxxx> wrote:
> > >
> > >
> > > ~~~EQUITY is overwritten every BackTest.
> > >
> > > Is it possible to "copy" ~~~EQUITY as a new ticker
> > which would
> > > not be overwritten?
> > >
> > > The overall aim is to plot equity curves from a number
> > of
> > > passes in a Rotational Trading model.
> > >
> > > Pat.
> > >
> > >
> > > 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
> > >
> > >
> > >
> > >
> > >
> >
> >
> > --
> > Cheers
> > Graham
> > http://e-wire.net.au/~eb_kavan/
> >
>
>
>
>
> __________________________________
> Do you Yahoo!?
> Yahoo! Mail - now with 250MB free storage. Learn more.
> http://info.mail.yahoo.com/mail_250
------------------------ Yahoo! Groups Sponsor --------------------~-->
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/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/
|