Watch how to download trading robots for free
Find us on Telegram!
Join our fan page
Join our fan page
You liked the script? Try it in the MetaTrader 5 terminal
- Views:
- 4188
- Rating:
- Published:
- 2018.06.06 13:11
-
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance
A weighted moving average of volumes.
It has one input parameter:
- Period - calculation period
Calculation:
total = Sum(volume, Period);EVWMA = ((total-volume)*EVWMA[-1] + volume[period]*close) / total;
Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/20334