Guppy Multiple Moving Averages

PeterB

Member
Messages
82
Likes
1
Does anybody have the metastock formula written by Daryl Guppy for Guppy Multiple moving averages? I would be grateful if you could post it up.

Regards PeterB
 
The only formula I have seen for this is not written by Guppy. It was written by Laidlaw , but referred to by Guppy in his text. Gives both the MMA Form and the exploration formula. Are these what you want ?
I'm out of here after today for a week so if replying during that time that you want these then I will post them for you after I return.
 
chump said:
The only formula I have seen for this is not written by Guppy. It was written by Laidlaw , but referred to by Guppy in his text. Gives both the MMA Form and the exploration formula. Are these what you want ?
I'm out of here after today for a week so if replying during that time that you want these then I will post them for you after I return.

Many thanks thats the ones I'd like to see.
 
Here you go...

MMA 10/45

If(OscP(10,45,E,%)>0,1,-1)

do the same for 12/50 .....15/60 .... 3/30 .... 5/35 .....8/40

MMA TOTAL (Note space between MMA 3/30 must be retained)
Fml("MMA 3/30")+Fml("MMA 5/35")+Fml("MMA 8/40")+Fml("MMA 10/45")+Fml("MMA 12/50")+Fml("MMA 15/60")

The exploration formula is :

Column A
CLOSE
Column B
Ref(C,-1)
Column C
Ref(C,-2)
Column D
Fml("MMA 3/30")+Fml("MMA 5/35")+Fml("MMA 8/40")+Fml("MMA 10/45")+Fml("MMA 12/50")+Fml("MMA 15/60")
Column E
Ref(Fml("MMA 3/30")+Fml("MMA 5/35")+Fml("MMA 8/40")+Fml("MMA 10/45")+Fml("MMA 12/50")+Fml("MMA 15/60"),-1)

Filter source
Formula
When (colD,>,0) AND When (colE,<=,0)

Anything in bold type are notes not part of the formula.
 
chump said:
Here you go...

MMA 10/45

If(OscP(10,45,E,%)>0,1,-1)

do the same for 12/50 .....15/60 .... 3/30 .... 5/35 .....8/40

MMA TOTAL (Note space between MMA 3/30 must be retained)
Fml("MMA 3/30")+Fml("MMA 5/35")+Fml("MMA 8/40")+Fml("MMA 10/45")+Fml("MMA 12/50")+Fml("MMA 15/60")

The exploration formula is :

Column A
CLOSE
Column B
Ref(C,-1)
Column C
Ref(C,-2)
Column D
Fml("MMA 3/30")+Fml("MMA 5/35")+Fml("MMA 8/40")+Fml("MMA 10/45")+Fml("MMA 12/50")+Fml("MMA 15/60")
Column E
Ref(Fml("MMA 3/30")+Fml("MMA 5/35")+Fml("MMA 8/40")+Fml("MMA 10/45")+Fml("MMA 12/50")+Fml("MMA 15/60"),-1)

Filter source
Formula
When (colD,>,0) AND When (colE,<=,0)

Anything in bold type are notes not part of the formula.


Many thanks PeterB
 
Top