PureBytes Links
Trading Reference Links
|
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;
|