Skip to content

Releases: srivastavaprashant/mgarch

0.3.0

14 Aug 17:17
Compare
Choose a tag to compare
:bug: Fix setup

0.2.0

23 Jul 00:11
eaf5602
Compare
Choose a tag to compare
Update README.md

0.1.5

21 Jul 20:58
Compare
Choose a tag to compare
Update setup.py

DCC-GARCH(1,1)

21 Jul 19:56
Compare
Choose a tag to compare

Multivariate GARCH

DCC-GARCH(1,1) volatility method for financial log returns. The distribution under the Normal Dist assumption.

Use case:

from mgarch import mgarch
rt = (t, n) numpy matrix with t days of observation and n number of assets.
vol = mgarch()
vol.fit(rt)
cov_nextday = vol.predict()

DCC-GARCH(1,1)

21 Jul 17:09
Compare
Choose a tag to compare
DCC-GARCH(1,1) Pre-release
Pre-release

Multivariate GARCH

DCC-GARCH(1,1) volatility method for financial log returns. The distribution under the Normal Dist assumption.

Use case:

from mgarch import mgarch
rt = (t, n) numpy matrix with t days of observation and n number of assets.
vol = mgarch()
vol.fit(rt)
cov_nextday = vol.predict()