معرفی شرکت ها


fipie-0.0.6


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A simple portfolio optimiser beyond the mean-variance optimisation
ویژگی مقدار
سیستم عامل -
نام فایل fipie-0.0.6
نام fipie
نسخه کتابخانه 0.0.6
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Tomoya Horiuchi
ایمیل نویسنده thoriuchi0531@gmail.com
آدرس صفحه اصلی https://github.com/thoriuchi0531/fipie
آدرس اینترنتی https://pypi.org/project/fipie/
مجوز MIT
# fipie A simple portfolio optimiser beyond the mean-variance optimisation [![PyPI version](https://badge.fury.io/py/fipie.svg)](https://badge.fury.io/py/fipie) [![codecov](https://codecov.io/gh/thoriuchi0531/fipie/branch/main/graph/badge.svg?token=U6UFHUM29L)](https://codecov.io/gh/thoriuchi0531/fipie) [![Documentation Status](https://readthedocs.org/projects/fipie/badge/?version=latest)](https://fipie.readthedocs.io/en/latest/?badge=latest) # Overview fipie is a simple portfolio optimiser which allows you to compute asset weights with algorithms from Markowitz's mean-variance optimisation to more modern methodologies! Highlights: - **Extendable**: fipie allows you to change the algorithm in a plug-and-play manner. Currently, it supports the following methods - Mean-variance optimisation - Equal nominal weighting - Volatility parity - Maximum diversification - Minimum variance - Equal risk contribution (ERC, aka risk parity) - **Clustering**: Clustering is supported for all weighting methods above. If applied, instruments can be grouped by clusters before applying the weighting method # Example The simplest example is to compute equal nominal weights without clusters. ```python from fipie import Portfolio, EqualWeight from fipie.data import load_example_data # Create a portfolio instance price = load_example_data() # Use weekly returns to calculate weights -- but this does not matter for equal weighting. ret = price.asfreq('w', method='pad').pct_change().dropna() portfolio = Portfolio(ret) # Compute the latest weight portfolio.weight_latest(EqualWeight()) ``` As expected, each instrument gets a weight of 1/7. ```python node_id SPY 0.142857 IWM 0.142857 QQQ 0.142857 MDY 0.142857 TLT 0.142857 GLD 0.142857 USO 0.142857 Name: weight, dtype: float64 ``` The portfolio above actually contains similar ETFs (e.g., SPY and IWM which are both US equities). In this scenario, it's more desirable to group similar instruments into clusters first and then compute weights. ```python from fipie import CorrMatrixDistance # Compute the latest weight with the clustering algorithm cluster_algo = CorrMatrixDistance(max_clusters=3) portfolio.weight_latest(EqualWeight(), cluster_algo) ``` With clusters, we can see different weights -- SPY and IWM are still equally weighted, but much smaller weights. On the other hand, TLT has got a much larger weight. ```python node_id SPY 0.055556 IWM 0.055556 QQQ 0.166667 MDY 0.055556 TLT 0.333333 GLD 0.166667 USO 0.166667 Name: weight, dtype: float64 ``` This is because the instruments are grouped as follows. ```python portfolio.create_tree(cluster_algo).show() ``` TLT has its own group, while equity ETFs are grouped into a cluster. There is another cluster for commodities (GLD and USO), resulting in weights somewhat between equities and bonds. ```python Node(root) Node(cluster_0) Node(cluster_1) Node(SPY) Node(IWM) Node(MDY) Node(QQQ) Node(cluster_2) Node(GLD) Node(USO) Node(TLT) ``` More details can be found here: https://fipie.readthedocs.io/en/latest/ # Installation ```bash pip install fipie ``` # Requirements These are the tested versions but most likely it should work with older versions. - python >= 3.6 - pandas >= 0.25 - scipy >= 1.0 # Licence This project is licensed under the terms of the MIT license.


نیازمندی

مقدار نام
>=0.25 pandas
>=1.0 scipy
>=6.2.5 pytest
>=6.0.2 coverage
==4.2.0 sphinx
==0.1.6 sphinx-book-theme
==0.15.2 myst-parser


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl fipie-0.0.6:

    pip install fipie-0.0.6.whl


نصب پکیج tar.gz fipie-0.0.6:

    pip install fipie-0.0.6.tar.gz