PureBytes Links
Trading Reference Links
|
I have had several requests for .ela file so here is one.
This is an indicator that calls the LEEX4 function which
is also included.
Note, the returned value is a SIGNED value which indicates
if the trend is up or down and hence if you want to know
the value of the function you must use ABSVALUE(LEEX4(.....))
The following is indicator:
inputs: ATFMult(3),
Delay(0),
AvgLeng(21);
Value1=AbsValue(LeeX4(ATFMult,AvgLeng));
If CurrentBar>Delay then Plot1(Value1[Delay],"LX4-1");
--
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
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
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Attachment Converted: "c:\eudora\attach\leex4.ela"
|