Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Guppy Multiple Moving Average (GMMA) for Amibroker (AFL)
kaiji
over 14 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 4)
Tags:
amibroker, moving average

The Guppy Multiple Moving Average also known as the GMMA what developed by Daryl Guppy and presented in his book ‘Trend Trading’. Instead of using just 2 moving averages to identify trends, which have limitations. The GMMA uses 2 sets of moving averages. The short-term moving averages are usually 3, 5, 8, 10, 12 and 15 periods and the long term moving averages are usually 30, 35, 40, 45, 50 and 60 periods long.

The GMMA Indicator Should Be Interpreted As Follows:

  • Trade in the direction of the long term group of averages
  • Compression shows agreement on price and value.
  • Compression of the long term and short term moving averages at the same time indicate major re-evaluation of stock and potential for a trend change
  • The relationships between the groups provide the necessary information about the nature and character of the trend.
  • The amount of separation present between the long term moving averages define trend strength and weakness
  • The amount of separation present between the short term moving averages define the nature of trading activity

Similar Indicators / Formulas

Hull Moving Average (HMA)
Submitted by kaiji over 14 years ago
Beauty
Submitted by sbtc555 almost 11 years ago
Smoothed MA (SSMA)
Submitted by kelvinhand almost 11 years ago
Trend Scalping System
Submitted by esnataraj about 14 years ago
TD DeMarker Plane
Submitted by extremist almost 13 years ago
Guppy GMMA with "derived" Indicator
Submitted by dalmas about 14 years ago

Indicator / Formula

Copy & Paste Friendly
SetChartOptions(0, chartShowArrows | chartShowDates);

FastMAColor = ParamColor("Fast Group MA Color", colorGreen);
SlowMAColor = ParamColor("Slow Group MA Color", colorRed);

Plot(EMA(C, 3), _DEFAULT_NAME(), FastMAColor, styleLine);
Plot(EMA(C, 5), _DEFAULT_NAME(), FastMAColor, styleLine);
Plot(EMA(C, 8), _DEFAULT_NAME(), FastMAColor, styleLine);
Plot(EMA(C, 10), _DEFAULT_NAME(), FastMAColor, styleLine);
Plot(EMA(C, 12), _DEFAULT_NAME(), FastMAColor, styleLine);
Plot(EMA(C, 15), _DEFAULT_NAME(), FastMAColor, styleLine);

Plot(EMA(C, 30), _DEFAULT_NAME(), SlowMAColor, styleLine);
Plot(EMA(C, 35), _DEFAULT_NAME(), SlowMAColor, styleLine);
Plot(EMA(C, 40), _DEFAULT_NAME(), SlowMAColor, styleLine);
Plot(EMA(C, 45), _DEFAULT_NAME(), SlowMAColor, styleLine);
Plot(EMA(C, 50), _DEFAULT_NAME(), SlowMAColor, styleLine);
Plot(EMA(C, 60), _DEFAULT_NAME(), SlowMAColor, styleLine);

0 comments

Leave Comment

Please login here to leave a comment.

Back