Mira cómo descargar robots gratis
¡Búscanos en Facebook!
Pon "Me gusta" y sigue las noticias
¿Es interesante este script?
Deje un enlace a él, ¡qué los demás también lo valoren!
¿Le ha gustado el script?
Evalúe su trabajo en el terminal MetaTrader 5
Indicadores

MACD MA Price - indicador para MetaTrader 4

Visualizaciones:
1849
Ranking:
(8)
Publicado:
2016.06.29 16:04
Actualizado:
2016.11.22 07:33
¿Necesita un robot o indicador basado en este código? Solicítelo en la bolsa freelance Pasar a la bolsa

The standard MACD indicator is calculated by formulas:

MACD = EMA(CLOSE, 12) - EMA(CLOSE, 26)

SIGNAL = SMA(MACD, 9),

where main line (MACD) is drawn on the exponential moving average (EMA), a signal line (SIGNAL) on the simple moving average (SMA), and applied price is limited to the closing price (CLOSE).

The proposed indicator MACD MA Price is more elastic in input parameters. It will allow you to use other moving averages and standard spectrum of applied prices. This indicator is prepared based on MACD template.

Taking into account additional input parameters in indicator MACD MA Price, formulas are as follow:

MACD = MACD_MA_method (Applied_price, 12) - MACD_MA_method (Applied_price, 26)
SIGNAL = Signal_MA_method (MACD, 9),

For those who will want in formula (1) have possibility to select separate mode of moving average, an additional modification of the indicator MACD MA Price-2 is prepared:

MACD = MACD_MA_method_1 (Applied_price, 12) - MACD_MA_method_2 (Applied_price, 26)

SIGNAL = Signal_MA_method (MACD, 9),

Input parameters:

MACD_MA_method, MACD_MA_method_1, MACD_MA_method_2 и Signal_MA_method:

  • 0 - Simple moving average,
  • 1 - Exponential moving average,
  • 2 - Smoothed moving average,
  • 3 - Linear weighted moving average.

Applied_price:

  • 0 - close price,
  • 1 - open price,
  • 2 - high price,
  • 3 - low price,
  • 4 - median price, (high+low)/2,
  • 5 - typical price, (high+low+close)/3,
  • 6 - weighted close price, (high+low+close+close)/4.

Image:

After receiving suggestions, I prepared some additional modifications with colored histogram. Take them from zip-file with description of input parameters.

Traducción del ruso realizada por MetaQuotes Ltd
Artículo original: https://www.mql5.com/ru/code/10786

maximus_vX lite maximus_vX lite

Asesor Experto que abre operaciones basado en consolidaciones de precio

Drag SLTP Drag SLTP

Un nuevo EA para modificar niveles de órdenes stop

VR---SETKA---3 VR---SETKA---3

Extensión de VR --- SETKA. Asesor de trabajo en rejilla por Martin...

MFI_price MFI_price

Indicador de MFI con posibilidad de establecer el precio aplicado.