Hi Dennis, as far as I see in the preferences it is no more possible to deactivate Quick AFL.
Thomas www.patternexplorer.com From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Dennis Brown Sent: Tuesday, May 22, 2007 6:35 PM To: [email protected] Subject: Re: [amibroker] Re: Strange error message: "Außerhalb des Bereichs" Thomas, You might want to check if turning fast AFL makes a difference. It did for a problem I had at one point. Dennis On May 22, 2007, at 12:07 PM, Thomas Z. wrote: > Hello, > > yes, i am sure, please see my attached snapshot. > > Furthermore it's strange that this problem only appears on backtests. > > It also appears only on some symbols and at those symbols it > appears only > when I test the complete history. > When I test for example the last 1300 bars than it makes no > problem, when I > set more bars than I get the error. > The number of bars at which this behavior occurs is different at every > symbol. > > > Thomas > www.patternexplorer.com > > > From: [email protected] [mailto:[EMAIL PROTECTED] > On Behalf > Of Tomasz Janeczko > Sent: Tuesday, May 22, 2007 4:26 PM > To: [email protected] > Subject: Re: [amibroker] Re: Strange error message: "Außerhalb des > Bereichs" > > "Ferhalb_des_Bereichs" - are you sure that you are getting error > message in > GERMAN language? > If so, it does not come from AmiBroker (there is not a single word > in German > in AB). > > Best regards, > Tomasz Janeczko > amibroker.com > ----- Original Message ----- > From: "Thomas" <[EMAIL PROTECTED]> > To: <[email protected]> > Sent: Tuesday, May 22, 2007 3:39 PM > Subject: [amibroker] Re: Strange error message: "Außerhalb des > Bereichs" > > Hello, > > do you see any failure in my code ? > I have reduced it as good as possible and deleted almost everything ? > > Basically the code below is a part of my trading system. My system > works fine when i use an ATR stop, but the problem appears when i > replace my ATR stop with my ValueATnHHV() function. > Thanks in advance ! > > function ValueATnHHV(Output,Array,period,n)//max. n = 7 > { > ValueATnHighestHighArray = Null; > > for( i = 0; i <= BarCount - Period; i++ ) > { > ReturnValue = Null; > for( j = i; j <= i + Period - 1; j++) > { > ReturnValue = Output[j]; > } > // _TRACE("This is first element of close array: " + > (i+period-1) + "Barcount" + BarCount); > ValueATnHighestHighArray[i+Period-1] = ReturnValue; > } > > return ValueATnHighestHighArray; > } > > Kind regards > Thomas > > --- In [email protected], "Ara Kaloustian" <[EMAIL PROTECTED]> wrote: >> >> typically your index in a loop is greated than the lat data point >> >> ----- Original Message ----- >> From: "Thomas" <[EMAIL PROTECTED]> >> To: <[email protected]> >> Sent: Tuesday, May 22, 2007 1:54 AM >> Subject: [amibroker] Strange error message: "Außerhalb des Bereichs" >> >> >>> Hello, >>> >>> i get a strange error message in germany language when i make a >>> backtest. In english it means "out of range". >>> >>> Does anyone know what possible reasons could be for that message ? >>> >>> I have already contacted the amibroker support but got no reply. >>> In the meantime i try to create a smaller code to make it able to >>> reproduce because my current code is already very long. >>> >>> Kind regards >>> Thomas >>> >>> >>> >>> >>> 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 NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG: >>> http://www.amibroker.com/devlog/ >>> >>> 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 NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG: > http://www.amibroker.com/devlog/ > > 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 NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG: > http://www.amibroker.com/devlog/ > > For other support material please check also: > http://www.amibroker.com/support.html > > Yahoo! Groups Links > > > > <Error_Message.png>
