[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: FOR LOOP



PureBytes Links

Trading Reference Links

> You can only step by one in EL but it's easy to work around.
> 
> for ii = 1 to 10 begin
>   jj = ii * .1;
>   {do your calcs using jj rather than ii}
> end;

PS: note the use of ii rather than i. Many single letters are reserved
words in EL: O, H, L, C, V, D, T, etc. I is short for open interest. I
quit trying to remember them all and just use double letters for
variables as a matter of routine to avoid using a reserved word.

-- 
  Dennis