How to Calculate Cumulative Moving Average?

How to Calculate Cumulative Moving / Running Average?

CMA Calculation

Cumulative Moving Average is the average of all the data in a datum stream. It can also be termed as cumulative running/rolling average. Use this tutorial to learn how to calculate cumulative moving average.
How To Calculate Cumulative Moving Average
Formula :
CMA = x1 + x2 + ...... + xn / n
Where,
x1,........xn - Data values of n Items
Cumulative Moving Average Formula
Step 1 :Find the cumulative moving average of a data set : 8,3,12,10,5
Cumulative Moving Average Step1
Step 2 :Substituting the above values in the formula,
Cumulative Moving Average = (8+3+12+10+5) / 5
= 38 / 5
= 7.6
Cumulative Moving Average Calculation Step2


Related Topics