PureBytes Links
Trading Reference Links
|
Alian,
I have not read the article you are referring to. However, the formula
posted by you looks interesting.
Could you please shed some more light on its method of trading or
interpretation, in a brief manner?
Thank you
Dusant
--- In equismetastock@xxxxxxxxxxxxxxx, "Alain" <scoubidoo@xxxx> wrote:
> Hi,
>
> Here's Futures of Nasdaq100 - NQ U3 07/23/2003.
>
> I applied Reversal Engineering RSI on the graph.
>
> Look, each times the RSI cross or touch 30-50-70 line, the
Reversal
> Engineering RSI cross or touch too.
>
> I saw the formula inside Stocks & Commodities magazine. June 2003,
> Volume 21, Number 6, P.18.
>
> So, I have 3 ReversalEngineeringRSI, for each zone. 30(low),
> 50(Mid), and 70(High).
>
>
>
> And this is my formula version wich I repeat 3 times the original
> formula.
>
>
>
>
> {Reverse Engineered RSI-High};
>
> valuehigh:=Input("RSI Value High",1,100,70);
> wildperhigh:=Input("Wilder Time Periods High",1,100,14);
> 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:=Input("RSI Value Mid",1,100,50);
> wildpermid:=Input("Wilder Time Periods Mid",1,100,14);
> 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:=Input("RSI Value Low",1,100,30);
> wildperlow:=Input("Wilder Time Periods Low",1,100,14);
> expperlow:=2*wildperlow-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:=(wildperlow-1)*(adclow*valuelow/(100-valuelow)-auclow);
> If(xlow>=0,C+xlow,C+xlow*(100-valuelow)/valuelow);
>
>
>
> Scoubidoo.
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for Your HP, Epson, Canon or Lexmark
Printer at Myinks.com. Free s/h on orders $50 or more to the US & Canada. http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/l.m7sD/LIdGAA/qnsNAA/BefplB/TM
---------------------------------------------------------------------~->
To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|