PureBytes Links
Trading Reference Links
|
{Reverse
Engineered RSI-High}; wildperhigh:=Input("Wilder Time Periods
High",1,100,14);valuehigh:=HHV(RSI(wildperhigh*2),wildperhigh*2);expperhigh:=2*wildperhigh-1; {Average
Up
Close-High};auchigh:=Mov(If(C>Ref(C,-1),C-Ref(C,-1),0),expperhigh,E); {Average
Down
Close-High};adchigh:=Mov(If(Ref(C,-1)>C,Ref(C,-1)-C,0),expperhigh,E); xhigh:=(wildperhigh-1)*(adchigh*valuehigh/(100-valuehigh)-auchigh);revengrsihigh:=If(xhigh>=0,C+xhigh,C+xhigh*(100-valuehigh)/valuehigh); revengrsihigh;
{Reverse Engineered
RSI-Mid}; valuemid:=50;wildpermid:=wildperhigh;exppermid:=2*wildpermid-1; {Average
Up
Close-Mid};aucmid:=Mov(If(C>Ref(C,-1),C-Ref(C,-1),0),exppermid,E); {Average
Down
Close-Mid};adcmid:=Mov(If(Ref(C,-1)>C,Ref(C,-1)-C,0),exppermid,E); xmid:=(wildpermid-1)*(adcmid*valuemid/(100-valuemid)-aucmid);revengrsimid:=If(xmid>=0,C+xmid,C+xmid*(100-valuemid)/valuemid); revengrsimid; {Reverse
Engineered
RSI-Low}; valuelow:=LLV(RSI(wildperhigh*2),wildperhigh*2);expperlow:=2*wildperhigh-1; {Average
Up
Close-Low};auclow:=Mov(If(C>Ref(C,-1),C-Ref(C,-1),0),expperlow,E); {Average
Down
Close-Low};adclow:=Mov(If(Ref(C,-1)>C,Ref(C,-1)-C,0),expperlow,E); xlow:=(wildperhigh-1)*(adclow*valuelow/(100-valuelow)-auclow);If(xlow>=0,C+xlow,C+xlow*(100-valuelow)/valuelow);
DusantChief Architect<A
href="">http://www.candlestrength.com/
----- Original Message -----
From: "mysystem07" <<A
href=""><FONT face=Verdana
size=2>mysystem07@xxxxxxxxx<FONT face=Verdana
size=2>>
To: <<A
href=""><FONT face=Verdana
size=2>Metastockusers@xxxxxxxxxxxxxxx<FONT face=Verdana
size=2>>
Sent: Tuesday, March 23, 2004 18:53
PM
Subject: [Metastockusers] reverse of RSI
indicator
<FONT face=Verdana
size=2>> Hi all,> I want to calculate the value of tomorrow's
close when I've entered > possible RSI value of tomorrow.For example, If
today's close is 8.70 > cent and RSI(14)=58, what should be the tomorrow
closing price when > tomorrow RSI crossed 50 below? Or similar reverse
RSI formula > studies can be helpful.> > > I think,
Reverse RSI formula for metastock had been posted > before,but I could
not find it in database. Thanks for your help.
Yahoo! Groups Sponsor
ADVERTISEMENT
Yahoo! Groups Links
To visit your group on the web, go to:http://groups.yahoo.com/group/Metastockusers/
To unsubscribe from this group, send an email to:Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|