PureBytes Links
Trading Reference Links
|
Henry
Thanks for posting the MMA cycles
code.
Could you provide some interpretation or source for
interpretation?
Thanks
David
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
Henry Z
Kaczmarczyk
To: <A
title=Metastockusers@xxxxxxxxxxxxxxx
href="">Metastockusers@xxxxxxxxxxxxxxx
Sent: Sunday, August 15, 2004 11:05
AM
Subject: [Metastockusers] MMA
Cycles
Here are a few indicators that measure cycles.The first
is based on Guppy
MMA'sB:=(O+H+L+C)/4;M1:=B-Mov(B,3,E);M2:=B-Mov(B,5,E);M3:=B-Mov(B,8,E);M4:=B-Mov(B,10,E);M5:=B-Mov(B,12,E);M6:=B-Mov(B,15,E);M7:=B-Mov(B,30,E);M8:=B-Mov(B,35,E);M9:=B-Mov(B,40,E);M10:=B-Mov(B,45,E);M11:=B-Mov(B,50,E);M12:=B-Mov(B,60,E);A:=Mov(Mov(Mov(M1+M2+M3+M4+M5+M6+M7+M8+M9+M10+M11+M12,2,S),2,S),2,S);A;Ref(A,-1);The
next one is bassed on stochastic cycles, it plots 4
linesP1:=Mov(((C-LLV(L,5))/(HHV(H,5)-LLV(L,5)))*100,3,E);P2:=Mov(((C-LLV(L,10))/(HHV(H,10)-LLV(L,10)))*100,3,E);P3:=Mov(((C-LLV(L,15))/(HHV(H,15)-LLV(L,15)))*100,3,E);P4:=Mov(((C-LLV(L,20))/(HHV(H,20)-LLV(L,20)))*100,3,E);A1:=Mov(((P1-LLV(P1,5))/(HHV(P1,5)-LLV(P1,5)))*100,3,E);A2:=Mov(((P2-LLV(P2,10))/(HHV(P2,10)-LLV(P2,10)))*100,3,E);A3:=Mov(((P3-LLV(P3,15))/(HHV(P3,15)-LLV(P3,15)))*100,3,E);A4:=Mov(((P4-LLV(P4,20))/(HHV(P4,20)-LLV(P4,20)))*100,3,E);A1;A2;A3;A4;This
next one is a cycle strength of the above
indicatorP1:=Mov(((C-LLV(L,5))/(HHV(H,5)-LLV(L,5)))*100,3,E);P2:=Mov(((C-LLV(L,10))/(HHV(H,10)-LLV(L,10)))*100,3,E);P3:=Mov(((C-LLV(L,15))/(HHV(H,15)-LLV(L,15)))*100,3,E);P4:=Mov(((C-LLV(L,20))/(HHV(H,20)-LLV(L,20)))*100,3,E);A1:=Mov(((P1-LLV(P1,5))/(HHV(P1,5)-LLV(P1,5)))*100,3,E);A2:=Mov(((P2-LLV(P2,10))/(HHV(P2,10)-LLV(P2,10)))*100,3,E);A3:=Mov(((P3-LLV(P3,15))/(HHV(P3,15)-LLV(P3,15)))*100,3,E);A4:=Mov(((P4-LLV(P4,20))/(HHV(P4,20)-LLV(P4,20)))*100,3,E);B:=Mov(Mov((A1-50)+(A2-50)+(A3-50)+(A4-50),2,S),2,S);B;Ref(B,-1);
Yahoo! Groups Sponsor
ADVERTISEMENT
Yahoo! Groups Links
To visit your group on the web, go to:http://groups.yahoo.com/group/Metastockusers/
To unsubscribe from this group, send an email to:Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|