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

Re: Need ELA help PLEASE!



PureBytes Links

Trading Reference Links

If it is an indicator, format it and check
'auto-maxbarsback' off. That should do the trick

H

--- John Manasco <john@xxxxxxxxxxx> wrote:
> Why does this code print the word Hello twice and
> what can I do about it? I
> only want it to print once. Seems TS2Ki wants to
> initialize the code by
> going through it once and then executing it. I'm
> trying to create a report
> for EOD data.
> 
> Thanks
> John
> 
> 
> If lastbaronchart then begin
>     for i = 0 to 10 begin
>        If High[i] - Close[i + 1] > .10 then j = j +
> 1;
>     end;
>     Print( "Hello" );
> end;
> 
> 
>