Library for flexible mean and volatility modelling
Project description
armagarch package
The package provides a flexible framework for modelling time-series data. The main focus of the package is implementation of the ARMA-GARCH type models.
Full documentation is coming soon.
Installation
The latest stable version can be installed by using pip
pip install armagarch
The master branch can be installed with
git clone https://github.com/iankhr/armagarch
cd armagarch
python setup.py install
Example: Modelling conditional volatility of the US excess market returns
The code requires: NumPy, Pandas, SciPy, Shutil, Matplotlib, Pandas_datareader and Statsmodels
import armagarch as ag
import pandas_datareader as web
import matplotlib.pyplot as plt
import numpy as np
# load data from KennethFrench library
ff = web.DataReader('F-F_Research_Data_Factors_daily', 'famafrench')
ff = ff[0]
# define mean, vol and distribution
meanMdl = ag.ARMA(order = {'AR':1,'MA':0})
volMdl = ag.garch(order = {'p':1,'q':1})
distMdl = ag.normalDist()
# create a model
model = ag.empModel(ff['Mkt-RF'].to_frame(), meanMdl, volMdl, distMdl)
# fit model
model.fit()
# get the conditional mean
Ey = model.Ey
# get conditional variance
ht = model.ht
cvol = np.sqrt(ht)
# get standardized residuals
stres = model.stres
# make a prediction of mean and variance over next 3 days.
pred = model.predict(nsteps = 3)
# pred is a list of two-arrays with first array being prediction of mean
# and second array being prediction of variance
Authors
- Ian Khrashchevskyi - iankhr
License
This project is licensed under the MIT License - see the LICENSE.md file for details
Acknowledgments
- Special thanks to Kevin Sheppard for his Python for Econometrics, which was an inspiration to write current code
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
armagarch-1.0.4-py3-none-any.whl
(43.4 kB
view details)
File details
Details for the file armagarch-1.0.4-py3-none-any.whl
.
File metadata
- Download URL: armagarch-1.0.4-py3-none-any.whl
- Upload date:
- Size: 43.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65148fc727c329af5fb541b0261d2fc58eefb828f3d967639d8ebdaea3ecba2d |
|
MD5 | 3c8d5efb7dd0fe2073d2023550980cb8 |
|
BLAKE2b-256 | c796b22b04e8fc98417940ef86ad8dab6cd1dc0a0102b4dbcdab74bf4bc0dd53 |