I want to fit a SARIMA model on a time series, daily sampled.

The time series has a 7 days seasonality and, over a moving 7 days window, the variance increases with the mean.

With a hyperparameters grid-search I defined the best model as ARIMA(1, 1, 2)(1, 0, 1)[7], where d=1 is adequate to deal with the non linear trend.

On original data, both Breusch-Pagan test and Goldfeld-Quandt test (between first third and last third of sample, see https://www.statsmodels.org/stable/generated/statsmodels.tsa.statespace.mlemodel.MLEResults.test_heteroskedasticity.html#statsmodels.tsa.statespace.mlemodel.MLEResults.test_heteroskedasticity) return p-values far less then 0.01

Taking the log of observations, there is a very weak correlation between moving average and variance and Breusch-Pagan test returns a p-value far greater than 0.1 but Goldfeld-Quandt test is still

More Max Pierini's questions See All
Similar questions and discussions