[amibroker] Calc using LinearReg

2006-08-27 Thread Keith Osborne
Hi, I want to find the value of the 52 period linear regression line 26 periods ago. The following line gives me a syntax error. I know it is simple, but then I may not understand LinearReg.can someone correct for me? Value = Linearreg((C, 52), -26); TIA Keith Please note that this grou

Re: [amibroker] Calc using LinearReg

2006-08-28 Thread Keith Osborne
Ara, Graham: Thanks...it was a bad day and my brain was in neutral for some reason! Keith Ara Kaloustian wrote: > Use Value = Ref(Linearreg(C, 52), -26); > > - Original Message - > From: "Keith Osborne" <[EMAIL PROTECTED]> > To: > Sent: Sunday,

[amibroker] Database problem - request for help.

2006-11-19 Thread Keith Osborne
Hi, I seem to have '000s of entries in my database which are empty of any quotes or information. When I look at the symbol tree at the beginning of the tree I have many, many symbols that have a green diamond next to them (regular symbols have a red diamond) with a symbol name of () or 0 (canno

Re: [amibroker] Trading Basis

2006-12-01 Thread Keith Osborne
Thomas, I have just purchased Amibroker-tools and am awaiting permanent key. It says in an email I received "It is SAFE to use our programs during the activation period; you don\'t need to wait for your permanent key." When I attempt to insert one of the charts I get an error message saying th

[amibroker] ?? Re use of Foreign

2007-02-14 Thread Keith Osborne
Hi, I am attempting to to create a ratio of the current close of a stock to that of an index (XJO on the ASX). When I plot the ratio as below I get nothing. I am assuming I am doing something wrong with "Foreign". Can someone point me in the direction as to how to correct. TIAKeith BM = F

[amibroker] Help with coding PREV alternative

2007-02-19 Thread Keith Osborne
Hi, I am attempting to convert a Metastock formula with a PREV statement. I have read a number of messages in Amibroker database and my attempt is as follows. IH_Periods = Param("Initial High", 21, 10, 100,1); HH = IH_Periods - 1; Z = HHV(H,HH); Z = 0; // Initialize for(i=1;i B, XX, PREV) I ge

Re: [amibroker] Help with coding PREV alternative

2007-02-20 Thread Keith Osborne
try z[0] = 0 instead and use prev[i] instead of constant PREV. > > > *From:* amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] > *On Behalf Of *Keith Osborne > *Sent:* Tuesday, 20 February 2007 2:54 PM > *To:* amibroker@yahoogroups.com > *Subject:* [amibroker] Help with coding P

[amibroker] Missing Buy/Sells in Backtesting.

2007-02-26 Thread Keith Osborne
Hi, I am backtesting a system and getting a strange mismatch between to backtest runs. Backtest run #1: Run on current symbol (PBL.AX) Range: All quotations Weekly period Results: 11 transactions all checked on chart and all are correct. Of these 11 transactions 3 are during the period 1/1/2000

[amibroker] Variable Backtest results

2007-02-27 Thread Keith Osborne
Any idea why I would get different # of trades when I run backtester in trade list mode vs detailed log mode? I ran backtester twice, the only change was in the output...trade or detailed. I got 5 trades in the trade list and 6 in the detailed log. When I look at the chart of the symbol for the

Re: [amibroker] AmiBroker DevLog and Knowledge Base started

2006-03-05 Thread Keith Osborne
Duke, can you advise which Thunderbird extension you use to set this up or just how you do it. ThanksKeith Duke Jones, CMT wrote: > Steve, if you have a mail client like Thunderbird you can read the > feeds directly within the mail client just like your regular email > messages > > Regards

Re: [amibroker] AmiBroker DevLog and Knowledge Base started

2006-03-05 Thread Keith Osborne
Duke, thanks...works like a charm. Keith Duke Jones, CMT wrote: > Keith, > > No extensions needed. I have attached a PDF that illustrates how. > > Regards, > > Duke Jones, CMT > > Keith Osborne wrote: >> Duke, can you advise which Thunderbird extension you use t

Re: [amibroker] Data Providers - premiumdata.net

2006-03-13 Thread Keith Osborne
Mike, I have been using Premium Data for about 2 1/2 years. Very reliable. WRT setup I remember it took me about 1 hour to do the setup. It is really straight forward once you do the 1st one or two folders and get in the rhythm.. Regards...Keith Mike Mann wrote: > I am trying to evalua

Re: [amibroker] new setup

2006-06-04 Thread Keith Osborne
Wayne, do not know which data feed you use but if you look at PremiumData then they have a new system that automatically (once set up) does all the ASX sector and market setup for you. I have used PremiumData (www.nofor a couple of years and have now implemented their new market/sector struc

[amibroker] Indicator name in chart title.

2006-06-13 Thread Keith Osborne
Hi, is there anyway to include the name of my indicator into the chart title? TIA.Keith Yahoo! Groups Sponsor ~--> Everything you need is one click away.  Make Yahoo! your home page now. http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/GHeqlB/TM -

[amibroker] DayofWeek function help.

2006-07-24 Thread Keith Osborne
Hi, need some help to get my head around DayofWeek() function. Using the following code I get buys on Wednesdays and not Mondays? Can someone see what I am doing wrong? TIAKeith Filter = 1; /* for scanning purposes */ SetBarsRequired(10,10);

Re: [amibroker] DayofWeek function help.

2006-07-25 Thread Keith Osborne
Graham, thanks. That fixed the problem. Keith Graham wrote: > Your Buy signal specifies dayofweek()==2 which is Tuesday, then you > have 1 bar delay in the settings, so entry would actually be on the > next bar whch would be Wednesday (if this is next market day) > >