Skip to main content

Multivariate GARCH modelling in Python

Project description

mvgarch

Multivariate GARCH modelling in Python

Description

This project performs a basic multivariate GARCH modelling exercise in Python. Such approaches are available in other environments such as R, but there is yet to exist a tractable framework for performing the same tasks in Python. This package should help alleviate such limitations and allow Python users to deploy multivariate GARCH models easily.

Installation

$ pip install mvgarch

Usage

# get return data
# returns = pd.DataFrame() of periodic returns of shape (n_periods, n_assets)

# import modules
from mvgarch.mgarch import DCCGARCH
from mvgarch.ugarch import UGARCH

# FIT UNIVARIATE GARCH MODEL

# get one of the return series
asset = returns.iloc[:, 0]

# fit a gjr-garch(1, 1) model to the first return series
garch = UGARCH(order=(1, 1))
garch.spec(returns=asset)
garch.fit()

# FIT MULTIVARIATE DCC GARCH MODEL

# make a list of garch(1, 1) objects
garch_specs = [UGARCH(order=(1, 1)) for _ in range(n_tickers)]

# fit DCCGARCH to the return data
dcc = DCCGARCH()
dcc.spec(ugarch_objs=garch_specs, returns=returns)
dcc.fit()

# forecast 4 weeks ahead
dcc.forecast(n_ahead=4)

Contributing

Pull requests are welcome.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mvgarch-1.2.0.tar.gz (10.8 kB view details)

Uploaded Source

Built Distribution

mvgarch-1.2.0-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file mvgarch-1.2.0.tar.gz.

File metadata

  • Download URL: mvgarch-1.2.0.tar.gz
  • Upload date:
  • Size: 10.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for mvgarch-1.2.0.tar.gz
Algorithm Hash digest
SHA256 4efe979d67ebbe970690e7585990c7ead3b313a801a7f87d6d57181925bd0a39
MD5 1cc35fadd1a71cc1e68785218f88416e
BLAKE2b-256 1040bca0e057371244ad4c1a9acea4e8f7267d99b40f387e0c20048f2c0fb214

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvgarch-1.2.0.tar.gz:

Publisher: python-package.yml on jack-tobin/mvgarch

Attestations:

File details

Details for the file mvgarch-1.2.0-py3-none-any.whl.

File metadata

  • Download URL: mvgarch-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 9.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for mvgarch-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 13727e016c9fff13a42b6d43943d5ed306a5a39f56789b2145e3e5f18f235277
MD5 8c8a322d467c6af2c4fd9fe844f7410d
BLAKE2b-256 7323730753b6a3987c4440031b74ffe9720890532b56953529d870b691363cd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvgarch-1.2.0-py3-none-any.whl:

Publisher: python-package.yml on jack-tobin/mvgarch

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page