I'm trying make a ARMA-GARCH Model in python and I use the arch package.
But in the arch package I cannot find a ARMA mean model.
I tried use the ARX mean model and let lags = [1,1], but the summary doesn't look like a ARMA model.
Does this package include ARMA mean model?
I learned this technique from Jason Brownlee, PhD and author of more than 18 books having to do with Applied Machine Learning, Mathematics, and Statistics:
To give proper credit where is due, I am citing my source of the learning I achieved through this material:
Citing reference Book:
Introduction to Time Series Forecasting with Python © Copyright 2020 Jason Brownlee. All Rights Reserved. Edition: v1.10
Jason Brownlee, PhD, Machine Learning Mastery
https://machinelearningmastery.com/develop-arch-and-garch-models-for-time-series-forecasting-in-python/
Thank you Jason for the countless hours and no doubt headaches and eye strain. You taught me that machine learning can be fun!
ARCH and GARCH Models in Python
and see results are extremely similar, however with a little more than twice as many iterations...
Citing reference Book:
Introduction to Time Series Forecasting with Python © Copyright 2020 Jason Brownlee. All Rights Reserved. Edition: v1.10
Jason Brownlee, PhD, Machine Learning Mastery
https://machinelearningmastery.com/develop-arch-and-garch-models-for-time-series-forecasting-in-python/