Momentum of a MA

 
I´ve modified the standard momentum indicator to plot some MA of the value.

    {
      MomBuffer[i]=Close[i]*100/Close[i+MomPeriod];      
      i--;
     }
     
   for(i=0; i<limit-1; i++)  
   EMA_buffer[i]=iMAOnArray(MomBuffer,Bars,Smooth,0,MODE_SMA,i);

Now I´m looking to do the inverse work. Calculate the Momentum of a MA and I completely lost.

The best approach was plenty to zero divide errors

This is already explained in one of the book´s of A. Elder.

Create some EMA (IE EMA 13) and apply some Momentum value (IE Mom 21).

This can be done dropping a MA over some Indicator like CCI,RSI as is explained in this article.

When you have the MA alone drop the Momentum indicator set to "Previous indicator data".

This produces a smoothed Momentum line.

As you see can be done manually but an indicator will help to make things faster.

Thanks for any help.
 
See if you like "this solution" ;)

in fact, the momentum of a MA e much more efective than the traditional momentum becouse it "prevents" the " droop off efect" that ocour in the traditional momentum.

breakmov
Files:
 
breakmov:
See if you like "this solution" ;)

in fact, the momentum of a MA e much more efective than the traditional momentum becouse it "prevents" the " droop off efect" that ocour in the traditional momentum.

breakmov

Excelent breakmov :)

I will include the code into the mod and post the full indicator.

Stay around here.