[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[EquisMetaStock Group] Re: Cutler's RSI



PureBytes Links

Trading Reference Links

------------------------------------------------------------------------
You cannot reply to this message via email because you have chosen not
to disclose your email address to the group.

To reply:  http://groups.yahoo.com/group/equismetastock/post?act=reply&messageNum=5638
------------------------------------------------------------------------

Thanks a lot, Roy!

=====================================================================

--- In equismetastock@xxxx, "Roy Larsen" <rlarsen@xxxx> wrote:
>   {Wilders's RSI}
> A:=Input("RSI periods",2,50,14);
> B:=CLOSE; {RSI target data array}
> U:=Wilders(If(B>Ref(B,-1),B-Ref(B,-1),0),A);
> D:=Wilders(If(B<Ref(B,-1),Ref(B,-1)-B,0),A);
> 100-(100/(1+(U/D)));
> 
> Roy
> 
> > What are the differences between the traditional Wilder's RSI and
> > Cutler's RSI? Could you write down both formulas for comparison? 
What
> > would be the corresponding Metastock code for Wilder's RSI?
> >
> > Thanks again.
> > 
=====================================================================
> > --- In equismetastock@xxxx, pumrysh <no_reply@xxxx> wrote:
> > > You will need to build this one yourself...it is not included in
> > the
> > > Metastock formulary.
> > >
> > > {RSI-Cutlers}
> > > Per1:=Input("Length of RSI",1,103,14);
> > > Umom:=If(C>Ref(C,-1),C-Ref(C,-1),0);
> > > Dmom:=If(C<Ref(C,-1),Ref(C,-1)-C,0);
> > > SumU:=Mov(Sum(Umom,Per1),Per1,E)/Per1;
> > > SumD:=Mov(Sum(Dmom,Per1),Per1,E)/Per1;
> > > RS:=SumU/SumD;
> > > 100-(100/(1+RS))
> > > {end}
> > >
> > >
> > > --- In equismetastock@xxxx, "bruneski" <iniciante_2000@xxxx> 
wrote:
> > > > Would anybody be able to enlighten this Metastock neophyte?
> > > >
> > > > How can I experiment with Cutler's RSI in Metastock? Is it
> > already
> > > > available? If not, what is the Metastock code to implement it?
> > > >
> > > > Thanks a lot. Cheers.
> >
> >
> > To unsubscribe from this group, send an email to:
> > equismetastock-unsubscribe@xxxx
> >
> >
> >
> > Your use of Yahoo! Groups is subject to 
http://docs.yahoo.com/info/terms/
> >
> >
> >
> >


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/