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

Re: CL_Need ELA help PLEASE!



PureBytes Links

Trading Reference Links

Try specifying the MAXBARSBACK setting rather
than letting the indicator "determine" MaxBarsBack.

Clyde
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Clyde Lee   Chairman/CEO       (Home of SwingMachine)
SYTECH Corporation             email:   <clydelee@xxxxxxx>
7910 Westglen, Suite 105       Work:    (713) 783-9540
Houston,  TX  77063            Fax:     (713) 783-1092
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
To subscribe / unsubscribe from SwingMachine list
http://www.egroups.com/list/swingmachine/

After joining list the freeware SwingMachine program
(DOS Version) is available in the  VAULT  at:
http://www.egroups.com/list/swingmachine/
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

----- Original Message -----
From: "John Manasco" <john@xxxxxxxxxxx>
To: "omega-list" <omega-list@xxxxxxxxxx>
Cc: "Code-list" <code-list@xxxxxxxxxxxxx>
Sent: Friday, February 04, 2000 12:07
Subject: CL_Need ELA help PLEASE!


> 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;
>
>
>