For those wishing to use MAs, try this exponential moving average.
alpha*(price+bestgain*(price-EMA[1]))+(1-alpha)*EMA[1]
where alpha = 0.25 and bestgain = 0.5
Next, start playing around with different alphas and gain factors. Best of luck.
btw, EMAs are just infinite impulse response (IIR) lowpass filters.
alpha*(price+bestgain*(price-EMA[1]))+(1-alpha)*EMA[1]
where alpha = 0.25 and bestgain = 0.5
Next, start playing around with different alphas and gain factors. Best of luck.
btw, EMAs are just infinite impulse response (IIR) lowpass filters.

