You are here: Symbol Reference > StatTimeSerAnalysis Namespace > Functions > StatTimeSerAnalysis.TripleExpForecast Function
Stats Master VCL
ContentsIndex
PreviousUpNext
StatTimeSerAnalysis.TripleExpForecast Function

First estimate Alpha, Beta and Gamma parameters by triple exponential smoothing and then use returned values to forecast up to T periods.

Pascal
procedure TripleExpForecast(const Y: TVec; const YHat: TVec; var Alpha: double; var Beta: double; var Gamma: double; const T: Integer; out MSE: double; const Period: Integer); overload;
Parameters 
Description 
Time series data set. 
YHat 
Time series forecasts. Size of the YHat vector are adjusted automatically. 
Alpha 
Overal smoothing parameter used for forecast. 
Beta 
Trend smoothing parameter used for forecast. 
Gamma 
Seasonal smoothing parameter used for forecast. 
Forecast values up to T period. 
MSE 
MSE, evaluated at minimum. 
Period 
Period length. An exception is raised if Y.Length mod Period is not 0. 

Use this routine if you don't know the best estimates for Alpha, Beta and Gamma.

Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!