Description:
- The additive model is expressed as Y=T+S+R
- When random is neglectible, Y=TMAn+S
- where T is the MA of time frame n
- which mean some S will also be missing
- Then seasonal variation of data point Yi, SYi=Yi−Ti
- ie, de-trended series
- ex:
Time | y | T(MA_4) | S |
---|
1 | 92 | | |
2 | 115 | | |
3 | 104 | 103.2 | 0.8 |
4 | 131 | 103.6 | 27.4 |
5 | 74 | 104.8 | -30.8 |
6 | 94 | 105.4 | -11.4 |
… | … | … | … |
- Then for every group of data point, GYi={Yi+an}, there is a group of detrended series, GSi={Si+an} (except the datapoints that dont have MA)
- ex: for MA-4, the first group, GY1={Y1,Y5,Y9,...} has detrended series GS1={S5,S9,S13...}
- Find the average detrended value for each of the group GS, call it GˉS
- Minus GˉS with an adjustment value (sum/n) to have the sum of all group’s detrended value to 0
- The sum is random component if not 0
- Forecast the future MA:
- Find the long term Trend of MA, TMA=(MAmax−MAmin)/MAn
- ie. trend of trend = Max MA - Min MA and divided by number of MA
- Assume the long term trend hold, MAi+1=MAi+TMA
- Then the next Y,Yj∗=MAj+GˉSi where Yj∗∈GYi
- The next Y is the MA of that data point plus the seasonal variant of that group
- as same as Y=T+S