[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [amibroker] Re: best way to restore built-in indicators



PureBytes Links

Trading Reference Links



Hi Joe,
 
Here's the original equity line indicator.  Just load it into the IB.
 
Go LSU,
GaryJoseph Landry <jelandry@xxxxxxxxxxxxx> wrote:
Several questions...When I press the equity button after a backtest I get a meaningless display..not useful.  It looks like my built-in equity indicator file got corrupted - right now it's got some of my old work on top of the original code--- ..it happens! How can I restore the built in curve only without wiping out all the other custom indicators that I have working.  (Seems I've downloaded at least 1/2 dozen betas before and I don't believe a system reload does not fix this).  What is the set up file that you refer to? A complete reload? Also another question - how can I alternate between the built in equity display(assuming I can get that going again) and another one kicking around the forum(Fred T'S?) when I press the equity button.Just started on the new PDF manual and it's great!  (Maybe
 I should be looking in there ! (;>Best personal regards this holiday seasonJOE --- In amibroker@xxxxxxxxxxxxxxx, "Tomasz Janeczko" <amibroker@xxxx> wrote:> John,> > The setup program that I am referring to is the one available> for download from http://www.amibroker.com/download.html> > The file name is AmiBroker450.exe or AmiBroker450up.exe> > You can also use just attached file (please note that replacing broker.bcharts> will wipe YOUR modifications you made to built-in charts formulas) > > Best regards,> Tomasz Janeczko> amibroker.com> ----- Original Message ----- > From: "john gibb" <jgibb1@xxxx>> To: <amibroker@xxxxxxxxxxxxxxx>> Sent: Sunday, December 14, 2003 12:04 AM> Subject: [amibroker] best way to restore built-in indicators> >
 > > Hi,> > > > What is the best way to restore built-in indicators?> > > > Perhaps because of a recent Amibroker crash, the code for the built-in> > indicators got deleted.> > > > In post 27869, TJ says about restoring the built-in indicators "...can> > relatively easily restore them if they are messed up by restoring> > broker.bcharts file. (If you don't have a backup you can simply delete this> > file and run the setup program (in upgrade version))> > > > I have 4.50.5 and couldn't find a 'setup' program. (I do have a> > broker.bcharts from a previous version I could use, but is that my best> > choice at this point?)> > > > thanks> > > > -john> > > > > > > > > > Send BUG REPORTS to bugs@xxxx> > Send SUGGESTIONS to
 suggest@xxxx> > -----------------------------------------> > Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx > > (Web page: http://groups.yahoo.com/group/amiquote/messages/)> > --------------------------------------------> > Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html > > > > Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/ > > > > > >Send BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to suggest@xxxxxxxxxxxxx-----------------------------------------Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 
Do you Yahoo!?
New Yahoo! Photos - easier uploading and sharing






Yahoo! Groups Sponsor


  ADVERTISEMENT 









Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx 
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html



Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



/**/
//--equity-plot-- do not remove this line
MaxGraph=0;GraphXSpace=5;
GraphZOrder=1;
Plot( Equity( 0, -2 ), "Equity", -8, styleArea );

/* now buy and hold simulation */
Short=Cover=0;
Buy=Status("firstbarintest");
Sell=Status("lastbarintest");
SetTradeDelays(0,0,0,0); PositionSize = -100;
ApplyStop(0,0,0,0);
ApplyStop(1,0,0,0);
ApplyStop(2,0,0,0);
Plot( Equity( 0, -2 ), "Buy&Hold", -9 );