Indicators: EVWMA

 

EVWMA:

Elastic Volume Weighted MA.  It has one input parameter:
  • Period - calculation period

Calculation:

total = Sum(volume, Period);

EVWMA = ((total-volume)*EVWMA[-1] + volume[period]*close) / total;

Author: Scriptor