"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
