//+------------------------------------------------------------------+ //| TMA.mq4 | //| Matias Romeo | //| mailto:matias.romeo@gmail.com | //+------------------------------------------------------------------+ #property copyright "Matias Romeo" #property link "mailto:matias.romeo@gmail.com" //---- #property indicator_chart_window #property indicator_buffers 1 #property indicator_color1 Red //Input parameters extern int Periods=7; extern int ApplyTo=0; //Apply To like "Applied price enumeration" //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 //Indicator buffers double tma[]; //Global variables int weights[]; double divisor; //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ int init() { SetIndexStyle(0,DRAW_LINE); SetIndexBuffer(0,tma); //---- IndicatorShortName("TMA("+Periods+")"); //Calculate weigths ArrayResize(weights,Periods); //---- double dPeriods=Periods; int to=MathCeil(dPeriods/2.0); for(int i=0; i0) counted_bars--; int limit=Bars-counted_bars; if(counted_bars==0) limit-=1+Periods; //---- for(int i=limit-1; i>=0; i--) { double tma_val=0.0; for(int j=0; j