PureBytes Links
Trading Reference Links
|
I have posted on this subject ad nauseum, so I'll limit my comments to a heads
up - the EL pivot function provided by Omega does not work properly across all
bars. For more information, search the Omega List archives.
Earl
-----Original Message-----
From: Neil Harrington <njh@xxxxxxxxx>
To: eagleinc@xxxxxxxxx <eagleinc@xxxxxxxxx>; omega-list@xxxxxxxxxx
<omega-list@xxxxxxxxxx>
Date: Wednesday, July 22, 1998 12:16 PM
Subject: RE: Easy Language Help
| The following code will do it. Create it as a ShowMe.
|
| Bob Fulks
|
| Inputs: Strength(5);
|
| Value1 = SwingHigh(1, H, Strength, Strength+1);
| Value2 = SwingLow (1, L, Strength, Strength+1);
|
| if Value1 > 0 then Plot1[Strength](Value1, "High");
| if Value2 > 0 then Plot2[Strength](Value2, "Low");
|