Attachments forums

List of attachments posted on this forum.


All files on forums: 136209

Re: Moving Average indicators for MT4

Banzai, Thu Jun 30, 2022 11:09 am

Triggerlines of Averages
(on/off button)

ahtf = automatic higher time frame

This version has 20 different Moving Averages.

Code: Select all

enum maTypes
{
   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
};

Attached is a picture of Bollinger Bands of SMA (20) and
Triggerlines of SMA (20)

It's a cool combination.
Now you can trade the Bollinger Bands easier.

You download this cool Bollinger Bands over here:
viewtopic.php?p=1295481479#p1295481479

So what are these Averages anyway? Click here:
viewtopic.php?f=579496&t=8474786
All files in topic