PureBytes Links
Trading Reference Links
|
Help not needed now. Rebooted computer this morning and showme now works.
Evidently, just restarting program several times yesterday was not
sufficient for problem to resolve itself ---- needed to also reboot
computer.
Thanks anyway.
Barry
----- Original Message -----
From: "Barry Silberman" <barry@xxxxxxxxxxxxxxxxxxxxx>
To: <omega-list@xxxxxxxxxx>
Sent: Wednesday, November 14, 2001 8:33 PM
Subject: help with EL code
> Could someone help with the following code. I get correct calculations
for
> all except I get an erroneous calculation for MA3.
>
> Any help would be appreciated.
>
> Barry
>
> ====================================
>
> {Calculate MA for data 3}
>
> Inputs: Price((H data3 + L data3) / 2),
>
> Price2 (close data3),
>
> MALength(20);
>
>
> Vars: MA3(0, data3);
>
>
> MA3 = AverageFC( Price, MALength );
>
>
> Condition3 = price2 > MA3;
>
>
|