Indicators: i-AMMA

 

i-AMMA:

A 25-day Average Modified Moving Average is employed as a filter. This was defined by Maxwell in "Commodity Futures Trading with Moving Averages."

AMMA is multiplied by 24, then today's close is added and the sum divided by 25.

Average Modified Moving Average.

Author: RickD2

 

Thanks for indicator.

1a. This code is preventing line style and line thickness from remaining permanent at user selection. If the line style or thickness is changed it will revert back to the default style-solid and thickness-1 when timeframe is changed or the terminal reloaded.

void init()
  {
   SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,1);

1b. This code will enable line style and line thickness to remain permanent at user selection when timeframe is change or terminal reload.

void init()
  {
   SetIndexStyle(0,DRAW_LINE);

 2. An Exponential Moving Average (EMA) of period-50, shift-0 and price-close matches the above indicator.

 

Hi ,

Thanks for indicator,


This average is the Wilder's average :the MT4 moving average  ma_mode =2 (smoothed) .


A Wilder's average of 25 periods is egal an Exponential average of 49 periods ( (25 x 2 )-1)

@+

Reason: