Data Science

Moving Average Method for Time-series forecasting

In this post, you will learn about the concepts of the moving average method in relation to time-series forecasting. You will get to learn Python examples in relation to training a moving average machine learning model.  The following are some of the topics which will get covered in this post:

  • What is the moving average method?
  • Why use the moving average method?
  • Python code example for the moving average methods

What is Moving Average method?

The moving average is a statistical method used for forecasting long-term trends. The technique represents taking an average of a set of numbers in a given range while moving the range. For example, let’s say the sales figure of 6 years from 2000 to 2005 is given and it is required to calculate the moving average taking three years at a time. In order to calculate the moving average, one would take an average of 2000-2002, 2001-2003, 2002-2004, 2003-2005, and 2004-2006. Let’s understand it with example. In the table given below, the average value is computed by taking average of previous three years including the current one.

YearSales (M$)Moving Average (MA)
20004NaN
20017NaN
200245
200396.67
200476.67
200510Needs to be predict assuming
2005 is the current year

Plotting the moving average from the above table would look like the following. The moving average are usually plotted for visualisation purpose.

Fig 1. Moving average of Sales figure from 2000-2005

There are different variations of moving average technique (also termed as rolling mean) such as some of the following:

  • Simple moving average (SMA): Simple moving average (SMA) is a form of moving average (MA) that is used in time series forecasting. It is calculated by taking the arithmetic mean of a given set of data over a certain period of time. It takes the sliding window over a given time period as shown in the above example (3 years interval). It can be termed as an equally weighted mean of n records. The advantage of using SMA is that it is simple to calculate and understand. However, one disadvantage is that it is based on past data and does not take into account future events. For this reason, SMA should not be used as the sole forecasting method, but rather as one tool in a broader forecasting arsenal.
  • Exponential moving average (EMA): Exponential moving average (EMA) is a type of moving average that places more weight on recent data points and helps smooth out the data points in a time series. Unlike simple moving averages, which give equal weight to all data points, EMAs give more weight to recent data points. This makes it more responsive to new information than a simple moving average. EMAs are often considered to be more responsive to changes in the underlying data. There are a number of different ways to calculate an EMA, but the most common approach is to use a weighting factor that decreases exponentially over time. This weighting factor can be used to give more or less emphasis to recent data points, depending on the needs of the forecaster. Exponential moving average forecasting can be used with any time series data, including stock prices, economic indicators, or weather data.

Interpreting a moving average graph that plots output of the moving average method in time series forecasting (as shown in the above plot) can be a useful tool for analysts, economists and investors to assess the current state of an asset or market. The concept behind this analysis is to identify trends in the data and make predictions about future outcomes based on these trends.

In simple terms, a moving average graph takes the average of several different points in the data set and then plots it over time. A longer-term moving average will give more emphasis to older data points, while a shorter-term one will look more closely at recent values. In case of stock price prediction, by examining how the line moves from period to period, investors can get a sense of where prices may be headed in the near future. For example, if prices were generally increasing with each new period up until now, then investors may expect prices to continue rising at least until there is clear evidence suggesting otherwise. On the other hand, if prices began dropping off sharply after some time period and continued to do so until present day, then this could indicate that downwards trend could continue.

It is important to note that while interpreting moving averages can provide helpful insights into future market fluctuations, it should not be treated as an infallible indicator. A single moving average line may not accurately depict all of the nuances and complexities of a given market environment; rather it should be used as one tool among many when trying to draw conclusions about potential price action going forward. As such, it may also be beneficial to take into account other types of technical analysis like support/resistance levels or momentum indicators when building out an entire trading strategy around a particular asset or security. Additionally, using multiple different moving averages with different lengths (i.e., short-, medium-, and long-term) can help investors better analyze how markets are behaving across various time horizons which could lead them to make wiser investment decisions about their portfolios going forward.

Why use Moving Average method?

The moving average method is widely used in time-series forecasting because of its flexibility and simplicity. Unlike other methods, such as ARIMA or neural networks, it does not require an advanced knowledge of mathematics. This means that even those with basic statistical knowledge can use it to get reliable results.

The main advantage of the moving average method is that it takes into account all previous values when predicting future values. This helps to reduce the effect of outliers when making predictions and also makes it easier to identify seasonal patterns in a time-series data set. Furthermore, the weighting methodology used by the moving average method gives more importance to recent values over older ones, which is beneficial when predicting short-term trends.

In addition, the simple moving average (SMA) method is usually computationally faster than more complex methods such as exponential moving average (EMA). It also requires less parameters and can be used on shorter data sets. And finally, the SMA method has been proven to be effective in many applications such as stock market analysis as well as seasonal forecasting.

Overall, the moving average method is an effective tool for short-term forecasting due to its flexibility and ease of use. Its ability to take into account all past values when making predictions ensures accuracy while its ability to identify seasonal patterns means that it can be used effectively for long-term forecasting too. Furthermore, its computational speed and minimal parameters make it a popular choice for many applications.

Python Example for Moving Average Method

Here is the Python code for calculating moving average for sales figure. The code that calculates the moving average or rolling mean is df[‘Sales’].rolling(window=3).mean(). The example below represents the calculation of simple moving average (SMA).

import pandas as pd
import numpy as np
#
# Create a numpy array of years and sales
#
arr = np.array([['2000', 4], ['2001',7],
                ['2002',4], ['2003',9],
                ['2004',7], ['2005',10]])
#
# Transpose array
#
arr_tp = arr.transpose()
#
# Create a dataframe
#
df = pd.DataFrame({'Years': arr_tp[0], 'Sales': arr_tp[1]})
#
# Calculate rolling mean
#
df['MA'] = df['Sales'].rolling(window=3).mean()
#
#
df.head()

This is how the output would look like:

Fig 2. Moving average of sales figure
Ajitesh Kumar

I have been recently working in the area of Data analytics including Data Science and Machine Learning / Deep Learning. I am also passionate about different technologies including programming languages such as Java/JEE, Javascript, Python, R, Julia, etc, and technologies such as Blockchain, mobile computing, cloud-native technologies, application security, cloud computing platforms, big data, etc. For latest updates and blogs, follow us on Twitter. I would love to connect with you on Linkedin. Check out my latest book titled as First Principles Thinking: Building winning products using first principles thinking. Check out my other blog, Revive-n-Thrive.com

View Comments

Recent Posts

How to Learn Effectively: A Holistic Approach

In this fast-changing world, the ability to learn effectively is more valuable than ever. Whether…

8 hours ago

How to Choose Right Statistical Tests: Examples

Last updated: 13th May, 2024 Whether you are a researcher, data analyst, or data scientist,…

11 hours ago

Data Lakehouses Fundamentals & Examples

Last updated: 12th May, 2024 Data lakehouses are a relatively new concept in the data…

1 day ago

Machine Learning Lifecycle: Data to Deployment Example

Last updated: 12th May 2024 In this blog, we get an overview of the machine…

1 day ago

Autoencoder vs Variational Autoencoder (VAE): Differences, Example

Last updated: 12th May, 2024 In the world of generative AI models, autoencoders (AE) and…

1 day ago

Linear Regression T-test: Formula, Example

Last updated: 7th May, 2024 Linear regression is a popular statistical method used to model…

6 days ago