f u t u r e ra
Forecasting

SUMMARY

Adaptive Response-Rate Exponential Smoothing (ARRES)

ARRES is a method of automatically choosing the alpha value based on the errors of previous time periods. The smoothing constant adapts to the data.

The equation of ARRES has the same form as SES:

SES:
Ft = α * At-1 + (1 - α) * Ft-1 or rewritten as:
Ft = Ft-1 + α * (At-1 - Ft-1)

ARRES:
α is the replaced by a tracking signal.
Ft = Ft-1 + TSTt-1 * (At-1 - Ft-1)

The adaptive response rate (TSTt), tracking signal, is the ratio of the absolute value of two averages, average forecast error and average absolute forecast error.

TSTt = absolute( SADt / MADt )
SADt = β * (At - Ft) + (1 - β) * SADt-1
MADt = β * absolute( At - Ft ) + (1 - β) * SADt-1

TSTt-1 = Tracking signal in period t used for α in period t + 1
β = Beta, a smoothing constant for SAD and MAD Typically choosen to be 0.2
SADt = An exponentially weigthed average deviation (mean forecast error) in period t
MADt = An exponentially weigthed mean absolute deviation (mean absolute forecast error) in



© 2024 futurera

BETA