PureBytes Links
Trading Reference Links
|
This ought to get you pretty close... I'll let you read Tommy's book if you
want to fine tune things further:
Input: OVERBGHT(45), OVERSOLD(-45),REI_BARS(5);
Var:Cond1(0), Cond2(0), D(0), SumD(0), Cnt(0), REI(0);
If (H<L[5] and H<L[6]) and (H[2] < C[7] and H[2] < C[8]) then Cond1=0 Else
Cond1=1;
If (L>H[5] and L>H[6]) and (L[2] > C[7] and L[2] > C[8]) then Cond2=0 Else
Cond2=1;
If Cond1=1 and Cond2=1 then D=(H-H[2])+(L-L[2]) else D=0;
SumD=0;
For cnt =0 to REI_BARS-1 begin
SumD=SumD+D[cnt];
End;
REI = (100/REI_BARS)*SumD/(Highest(H,REI_BARS) - Lowest(L,REI_BARS));
Plot1(REI,"TDC.REI");
Plot2(OVERBGHT,"OverBght");
Plot3(OVERSOLD,"OverSold");
All the best,
The Omega Man
I built me a raft and she's ready for floatin'
-----Original Message-----
From: Ishmael Jonah Smith <ishmael_j_smith@xxxxxxxxxxxx>
To: omega-list@xxxxxxxxxx <omega-list@xxxxxxxxxx>
Cc: editorial@xxxxxxxxxxxxx <editorial@xxxxxxxxxxxxx>
Date: Sunday, August 30, 1998 9:48 PM
Subject: Reverse Engineering Request
The Omega Man wrote:
<<By the way, if there are other indicators out there that you'd like The
Omega Man to reverse engineer, just send me a URL where I can look at a
chart with the indicator and some price data.... we'll see if we can't save
you some cash.>>
Joe -- what about trying the ThomasDemark Expert indicator that comes
password locked with TS.
Regards,
IJS
Now MailCity offers forwarding so you can check your MailCity messages and
other e-mail all in one place. Go to http://www.mailcity.com
|