PureBytes Links
Trading Reference Links
|
This indicator tracks major trend cycles and the crossing gives non subjective changes...
Modified Vortex Cycle Indicator
========================================
{Modified Vortex Cycle Indicator -
modified by formulaprimer}
y:=Input("short MA time periods", 2, 200, 20);
z:=Input("long MA time periods", 3, 200, 50);
test:=If(z-y=0,-9999,z-y);
tcp:=If(test=-9999, 0,
(y*(z-1)*Mov(C,z-1,S)-z*(y-1)*Mov(C,y-1,S))/test);
tcm:=If(test=-9999, 0,
(y*(z-1)*Mov(C,z-1,S)-z*(y-1)*Mov(C,y-1,S))/test)*-1;
tcp;{Red}
tcm;{Green}
{End}
------------------------------------
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/equismetastock/join
(Yahoo! ID required)
<*> To change settings via email:
equismetastock-digest@xxxxxxxxxxxxxxx
equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|