PureBytes Links
Trading Reference Links
|
Edwin, I was looking at multiple MA's, but by combining them, I get
the true strength of the asset in regards to it's current position
vs the MA's. I got this idea from John Murphy's book on technical
analysis.
Is it overbought or oversold at extreme strength levels?
The second indicator shows cycles from 4 different times, as these
cycles come together, there is a greater chance for a reversal.
The third indicator takes the same idea from the first indicator and
applies it to the second indicator
--- In Metastockusers@xxxxxxxxxxxxxxx, "edwinncw" <edwinncw@xxxx>
wrote:
>
> Dear Henry
>
> I found the indicators are very interesting, i am appreciate can
you
> provide me with some interpretation information for the 3
indicators.
>
> Regards
> Edwin
>
> --- In Metastockusers@xxxxxxxxxxxxxxx, "Henry Z Kaczmarczyk"
> <henry1224@xxxx> wrote:
> >
> > David
> >
> > in the first indicator, D Guppy uses 12 different Ma's.
> > He uses the cross of each Ma as a signal .
> > I use an averaged price to lessen the effects from price spikes,
I
> > then measure the difference from the averaged price and it's Ma
> then
> > add the totals from all of the ma's.I then triple smoothed the
> > indicator to eliminate whipsaws. As each wave emerges the cycle
> > shows the strength of the wave.
> >
> > B:=(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 second indicator is really a stochastic of a stochastic, it
> > plots 4 lines from different stoch values.
> >
> > The third indicator uses the same idea as the first indicator
and
> > measures the second indicator from it's midpoint
> >
> >
> > --- In Metastockusers@xxxxxxxxxxxxxxx, "David Linton"
> > <dhlinton@xxxx> wrote:
> > > Henry
> > > Thanks for posting the MMA cycles code.
> > > Could you provide some interpretation or source for
> interpretation?
> > > Thanks
> > > David
> > > ----- Original Message -----
> > > From: Henry Z Kaczmarczyk
> > > To: 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's
> > >
> > > B:=(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 lines
> > >
> > > P1:=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 indicator
> > >
> > > P1:=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
> > >
> > > a.. To visit your group on the web, go to:
> > > http://groups.yahoo.com/group/Metastockusers/
> > >
> > > b.. To unsubscribe from this group, send an email to:
> > > Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
> > >
> > > c.. Your use of Yahoo! Groups is subject to the Yahoo!
Terms
> > of Service.
------------------------ Yahoo! Groups Sponsor --------------------~-->
$4.98 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/Q7_YsB/neXJAA/yQLSAA/zMEolB/TM
--------------------------------------------------------------------~->
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:
http://docs.yahoo.com/info/terms/
|