PureBytes Links
Trading Reference Links
|
Chase,
Here's another RMI indicator. While it more closely resembles the
Metastock formula it is not quite the same. The differences are very
small and are do to the method of smoothing.
Preston
{RMI}
Pds:=Input("Time Periods",1,333,20);
M:=Input("Momentum",1,333,5);
B:=Input("Field:1=Close,2=Open,3=High,4=Low, 5=Volume",1,5,1);
Bval:=If(B=1,C,If(B=2,O,If(B=3,H,If(B=4,L,V))));
SMO:=Mov(Bval,M+1,WEIGHTED);
MOM:=ROC(SMO,1,$);
Z:=Wilders(If(MOM>0,MOM,0),Pds);
Y:=Wilders(If(MOM<0,Abs(MOM),0),Pds);
RM:=Z/Y;
100-(100/(1+RM))
>
> --- In equismetastock@xxxxxxxxxxxxxxx, "gator1trader"
<chasecarney@xxx
> .> wrote:
> > Does anyone know the formula for the RMI? I know the "RMI
(C,34,5)"
> > that is standard with MS, I would like to get insided the formula
> and
> > tweak it just a little.
> >
> > Thanks in advance,
> > Chase
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Free shipping on all inkjet cartridge & refill kit orders to US & Canada. Low prices up to 80% off. We have your brand: HP, Epson, Lexmark & more.
http://www.c1tracking.com/l.asp?cid=5510
http://us.click.yahoo.com/GHXcIA/n.WGAA/ySSFAA/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/
|