Time Series Analysis (Moving Average Filters)

From Met Dynamics
Revision as of 07:15, 19 March 2023 by Scott Munro (talk | contribs) (1 revision imported)
Jump to navigation Jump to search

Description

This article describes several filters for the analysis of time series data, including:

  • Simple Moving Average (SMA)
  • Exponential Moving Average (EMA)
  • Linear Regression Moving Average (LRMA)

Model theory

Under construction icon-blue.svg.png This section is currently under construction. Please check back later for updates and revisions.

Excel

Under construction icon-blue.svg.png This section is currently under construction. Please check back later for updates and revisions.

The moving average filters may be invoked from the Excel formula bar with the following function calls:

=mdTimeSeries_SMA(TimeSeriesData as Range, k as Integer)
=mdTimeSeries_EMA(TimeSeriesData as Range, alpha as Double)
=mdTimeSeries_LRMA(TimeSeriesData as Range, k as Integer)

Invoking the function with no arguments will print Help text associated with the model, including a link to this page.

References