PureBytes Links
Trading Reference Links
|
Here is an indicator which uses a lowlag ema and the
latest RSI DLL from the Equis Forum (found in our files section).
This indicator is similar to the Jurik DMX.
{(DMZ)Dynamic Momentum Index}
{similar to the Jurik DMX- a lowlag DMI}
{written by Preston Umrysh}
{This indicator uses Dll software developed by MetaStock Forum Crew}
{http://forum.equis.com)}
Vt:=(Stdev(C,5)/Mov(Stdev(C,5),10,E))*10;
Vt:=Max(vt,.0000001);
Period:= Input("ZeroLag Period",1,250,10);
EMA1:= Mov(C,Period,E);
EMA2:= Mov(EMA1,Period,E);
Difference:= EMA1 - EMA2;
ZeroLagEMA:= EMA1 + Difference;
x:=ZeroLagEMA;
ExtFml( "ForumDLL.VarRSI",x ,vt)
{end}
Enjoy,
Preston
------------------------ Yahoo! Groups Sponsor --------------------~-->
<font face=arial size=-1><a href="http://us.ard.yahoo.com/SIG=12hg68prt/M=362131.6882500.7825259.1493532/D=groups/S=1705375617:TM/Y=YAHOO/EXP=1124438031/A=2889190/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Put more honey in your pocket. (money matters made easy) Welcome to the Sweet Life - brought to you by One Economy</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/
|