PureBytes Links
Trading Reference Links
|
Yes, it helps a great deal!
Let me explain a bit. You will notice that the code below uses the
terms PDI and MDI. In metastock terminology that is positive
directional index(DI+) and minus directional index (DI-). Next we
notice the bipolar index trick where we plot (x-y)/(x+y). Then
finally there is either a weighted moving average or a wilders
smoothing. Pretty simple really, if this is the jurik code its really
not as smooth as it could be. I'll actually write out several and see
which is smoother and more importantly has less lag.
Very Good! Thanks!
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, "madhavranade" <sumamura@xxxx>
wrote:
>
> preston,
>
> see if this gives u some clue.
>
>
>
> t = Param("DM Periods",14,1,100,1);
>
> bDMI = 100 * (PDI(t) - MDI(t)) / (PDI(t) + MDI(t));
> Plot(bDMI,"Bipolar DMI"+t,4,1);
> Plot(WMA(bDMI,4),"",5,1);
> --------------------------------------------------------------------
--
> ----------
>
>
>
> --- In equismetastock@xxxxxxxxxxxxxxx, pumrysh <no_reply@xxxx>
wrote:
> > DMX is Jurik Research's low lag DMI.
> >
> > Let's see the tradestation code and maybe we can duplicate it.
> >
> > Preston
> >
> >
> >
> > --- In equismetastock@xxxxxxxxxxxxxxx, "madhavranade"
> <sumamura@xxxx>
> > wrote:
> > > any idea about MS formula for this indicator. i can give you
> > > tradestation formula if it is of any help.
------------------------ Yahoo! Groups Sponsor --------------------~-->
<font face=arial size=-1><a href="http://us.ard.yahoo.com/SIG=12h06ts7c/M=362343.6886682.7839641.1493532/D=groups/S=1705375617:TM/Y=YAHOO/EXP=1123692171/A=2894350/R=0/SIG=10tj5mr8v/*http://www.globalgiving.com">Make a difference. Find and fund world-changing projects at GlobalGiving</a>.</font>
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> 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/
|