Accelerated MA Indicator For MT4
The Accelerated MA Indicator For MT4 works based on MA and CCI indicators. It draws the moving along with the price so that the traders can find the dynamic support and resistance level. If you spot any bullish or bearish rejection at the blue color curve, execute the traders to make big profits from this market. But make sure you are not trading with high risk as it will ruin your trading career.
Installing the Accelerated MA Indicator For MT4
After you downloaded the indicator via the form above you need to unzip the zip-file. Then you need to copy the file AcceleratedMA.mq4 into the folder MQL4\Indicators of your MT4 installation. After that please restart MT4 and then you will be able to see the indicator in the list of indicators.
Parameters of the Accelerated MA Indicator For MT4
The Accelerated MA Indicator For MT4 has 1 parameters to configure.
extern int p=50;
Buffers of the Accelerated MA Indicator For MT4
The Accelerated MA Indicator For MT4 provides 1 buffers.
SetIndexBuffer(0,ma);
Main Parts Of The Code
int start()
{
int counted_bars=IndicatorCounted();
//----
for(int i=Bars-counted_bars-1;i gt =0;i--){
ma[i]=iMA(Symbol(),Period(),p,0,MODE_SMA,PRICE_CLOSE,i)+(iATR(Symbol(),Period(),p,i)*iCCI(Symbol(),Period(),p,PRICE_CLOSE,i)/100);
}
//----
return(0);
}
//+------------------------------------------------------------------+