Attachments forums

List of attachments posted on this forum.


All files on forums: 160923

Re: Moving Average indicators for MT4

Banzai, Mon Feb 24, 2025 6:10 am

Guppy 20x MMA
(on/off button)

The Guppy Multiple Moving Averages (Guppy MMA)
is a technical analysis tool developed by Daryl Guppy.
It consists of two sets of Exponential Moving Averages (EMAs)
to analyze trend strength and changes.

Short-term EMAs (3, 5, 8, 10, 12, 15) represent trader behavior.
Long-term EMAs (30, 35, 40, 45, 50, 60) reflect investor sentiment.
When the short-term EMAs cross above the long-term EMAs,
it signals a bullish trend, while crossing below indicates a bearish trend.

This indicator has 20 Moving Averages:

Code: Select all

   ma_sma,     // Simple Moving Average - SMA
   ma_ema,     // Exponential Moving Average - EMA
   ma_smma,    // Smoothed Moving Average - SMMA
   ma_lwma,    // Linear Weighted Moving Average - LWMA
   ma_dsema,   // double smoothed exponential moving average - DSEMA
   ma_dema,    // double exponential moving average - DEMA
   ma_tema,    // tripple exponential moving average - TEMA
   ma_pwma,    // parabolic weighted moving average - PWMA
   ma_alxma,   // Alexander moving average - ALXMA
   ma_vwma,    // volume weighted moving average - VWMA
   ma_hull,    // Hull moving average - HMA
   ma_tma,     // triangular moving average
   ma_sine,    // sine weighted moving average
   ma_linr,    // linear regression value - LSMA
   ma_ie2,     // IE/2
   ma_nlma,    // non lag moving average
   ma_zlma,    // zero lag moving average
   ma_lead,    // leader exponential moving average
   ma_ssm,     // super smoother
   ma_smoo     // smoother
All files in topic