2

I'm looking for a package that lets me estimate a vector autoregressive model with a mean equation consisting or perhaps an ARIMA and then a GARCH part. It is not of great importance what multivariate GARCH method is used and could thus be anything from a VECH to BEKK. I know that there is a package called mgarch out there but it does not seem to be in CRAN.

Any suggestions?

user2182066
  • 157
  • 2
  • 9

1 Answers1

4

The mgarch package is hosted on Github. It's available here.

In order to install R packages from Github you can use devtools from Hadley. This previous question address how to do this: How to install development version of R packages github repository.


There is also rugarch which provides possibility of external regressors and also ccgarch which deals with Conditional Correlation GARCH models.

A deep look in CRAN Finance's TaskView will give a good idea of the available packages in this area.

Community
  • 1
  • 1
João Daniel
  • 8,696
  • 11
  • 41
  • 65