Is this what you mean?

sumArray = Sum( Array_y , LookBack );
for (i=0; i<50; i++){
        c2_Posn = Ref( HHVBars( Array1, sumArray[i]), -1 ) + 1;
        ...
}

--- In [email protected], "sidhartha70" <sidharth...@...> wrote:
>
> Sorry, forgot to add a line that illustrates the iterative nature of the loop,
> 
> LookBack = 31;
> 
> for ( i = 1;i < 50;i++ )
> {
> c2_Posn = Ref( HHVBars( Array1, LookBack ), -1 ) + 1;
> .
> .
> .
> LookBack = c2_posn;
> }
> 
> --- In [email protected], "sidhartha70" <sidhartha70@> wrote:
> >
> > Yes increment. Sorry.
> > 
> > Ok. Here's some code...
> > 
> > LookBack = 31;
> > 
> > for ( i = 1;i < 50;i++ )
> >     {
> > c2_Posn = Ref( HHVBars( Array1, LookBack ), -1 ) + 1;
> >    .
> >    .
> >    .
> >     }
> > 
> > 
> > Now, what I actually want to do, and tried to do, is instead of the 
> > increment being '50' was to make it equal to,
> > 
> > Sum( Array_y , LookBack );
> > 
> > However, that doesn't work. If I can't make the increment variable, i.e. 
> > equal to the value of an array, the other option is to exit the loop when 
> > no more interations are required... Again, this causes a problem because I 
> > can't do something like,
> > 
> > if ( c2_Posn<4) break;
> > 
> > Any ideas...?
> >
>


Reply via email to