vaMA – indicator MetaTrader 5

vaMA - indicator for MetaTrader 5
The vaMA is the indicator drawn on the simple principle of price shift, the smoothed EMA, the increments of the first 3 orders with a step proportional to the period of smoothing. Then we get the smoothed and the fast indicator. Indicator input parameters: input int vaMA_period=15;           //Period input bool use_double_smooth=1;     //Double smoothing The vaZZ … Read more

VAMA – indicator MetaTrader 5

Fig 1. Double smoothing enabled
VAMA (Velocity and Acceleration Moving Average). There are three adjustable parameters: Period – calculation period; Applied price – the calculation price; Double smoothing – enable or disable double smoothing (Yes/No). Calculation: VAMA = EMA + D1 + D2 / 2 + D3/6 where: D1[i] = EMA[i] – EMA[i-Period/4] D2[i] = EMA[i] – 2 * EMA[i-Period/4] … Read more