Description:
- Expressed as Y=T×S×R
- S and T are expressed as percentage
Multiplicative model forecasting with Seasonal Variation:
- When random is neglectible which means R≈1,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 | 1.007751938 |
4 | 131 | 103.6 | 1.264478764 |
5 | 74 | 104.8 | 0.70610687 |
6 | 94 | 105.4 | 0.891840607 |
… | … | … | … |
- 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)/n) to have the sum of all group’s detrended value to number of group
- 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 multiply the seasonal variant of that group
- as same as Y=T∗S