We appreciate your business!
As a reward for staying a BJF Trading Group inc. customer, please Get
Free MetaTrader Indicator MTF-MA. i-MTF-MA indicator draws Moving
Average by higher timeframes.
More information about indicator...
You can download it here
Also we have developed new Metatrader Indicator "Center of Gravity (COG) Divergence Generation III"
More information about indicator...
Best regards,
BJF Trading Group inc.
Free Indicator MTF-MA Conception
i-MTF-MA indicator draws Moving Average by higher timeframes.

Free Indicator MTF-MA Options
extern int MA.TF = PERIOD_H4;
// Timeframe of the chart (chart period). It can be any of the following values:
//
// Constant | Value | Description
// PERIOD_M1 | 1 | 1 minute.
// PERIOD_M5 | 5 | 5 minutes.
// PERIOD_M15 | 15 | 15 minutes.
// PERIOD_M30 | 30 | 30 minutes.
// PERIOD_H1 | 60 | 1 hour.
// PERIOD_H4 | 240 | 4 hour.
// PERIOD_D1 | 1440 | Daily.
// PERIOD_W1 | 10080 | Weekly.
// PERIOD_MN1 | 43200 | Monthly.
// 0 (zero) | 0 | Timeframe used on the chart.
extern int MA.Period = 13;
// MA period, bars
extern int MA.ma_shift = 0;
// MA shift, bars
extern int MA.ma_method = MODE_EMA;
// Moving Average calculation method. It can be any of the following values:
//
// Constant | Value | Description
// MODE_SMA | 0 | Simple moving average,
// MODE_EMA | 1 | Exponential moving average,
// MODE_SMMA | 2 | Smoothed moving average,
// MODE_LWMA | 3 | Linear weighted moving average.
extern int MA.applied_price = PRICE_CLOSE;
// Applied price constants. It can be any of the following values:
//
// Constant | Value | Description
// PRICE_CLOSE | 0 | Close price.
// PRICE_OPEN | 1 | Open price.
// PRICE_HIGH | 2 | High price.
// PRICE_LOW | 3 | Low price.
// PRICE_MEDIAN | 4 | Median price, (high+low)/2.
// PRICE_TYPICAL | 5 | Typical price, (high+low+close)/3.
// PRICE_WEIGHTED | 6 | Weighted close price, (high+low+close+close)/4.
|