PureBytes Links
Trading Reference Links
|
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 amibroker@xxxxxxxxxxxxxxx, "Ara Kaloustian" <ara1@xxx> wrote:
>
> typically your index in a loop is greated than the lat data point
>
> ----- Original Message -----
> From: "Thomas" <tzg@xxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> 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
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|