A simple python tool for calculating ratios used to measure portfolio performance.
Project description
Overview
A simple python tool for calculating ratios used to measure portfolio performance. Ratios include alpha, beta, sharpe, volatility, upside capture, downside capture, sortino ratio, treynor ratio, drawdown etc.
It also can be used to calculating portfolio returns like XIRR. (twirr, holding period return etc. will be added).
The tool is largely based on pandas and numpy and is capable of giving continuous (rolling) values of ratios wherever required in the form of a pandas dataframe. All data (portfolio/ navs/ market) needs to be passed in arguments based on the function getting called.
For example - XIRR can be calculated from portfolio cashflows [(date, amount)]. - Sharpe ratio will need scheme/portfolio nav [(date, nav)]. - Alpha will need both scheme nav as well as benchmark nav.
For definitions of above terms, check Investopedia. You can find the examples of few of these ratios here. https://www.valueresearchonline.com/funds/197/sbi-large-and-midcap-fund
Free software: BSD 2-Clause License
Installation
pip install finance-calculator
You can also install the in-development version with:
pip install https://github.com/sprksh/finance-calculator/archive/master.zip
Documentation
Development
To run all the tests run:
tox
Note, to combine the coverage data from all the tox environments run:
Windows |
set PYTEST_ADDOPTS=--cov-append tox |
---|---|
Other |
PYTEST_ADDOPTS=--cov-append tox |
Usage
To use finance_calculator in a project:
import finance_calculator as fc
drawdown = fc.get_drawdown(scheme_data, 250, 22)
volatility = fc.get_volatility(scheme_data, 250, 22)
sharpe = fc.get_sharpe(scheme_data, 250, 22)
sortino = fc.get_sortino(scheme_data, 250, 22)
treynor = fc.get_treynor(scheme_data, benchmark_data, 250, 22)
alpha = fc.get_alpha(scheme_data, benchmark_data, 250, 22)
beta = fc.get_beta(scheme_data, benchmark_data, 250, 22)
upside_capture = fc.get_upside_capture(scheme_data, benchmark_data, 250, 22)
downside_capture = fc.get_downside_capture(scheme_data, benchmark_data, 250, 22)
If you want only current value of a given ratio, you can use tail=True as a keyword argument in all of these functions. With tail=False it will give a pandas dataframe with values in a rolling window fashion.
The scheme data and the benchmark data can either be a pandas dataframe or list of tuples: (date, nav).
Also you can use it to calculate xirr:
>>> import finance_calculator as fc
>>> cashflow_data = [
(datetime.date(2020, 3, 1), 10000),
(datetime.date(2020, 4, 1), 10000),
(datetime.date(2020, 5, 1), 10000),
(datetime.date(2020, 6, 1), 10000),
(datetime.date(2020, 7, 1), 10000),
(datetime.date(2020, 8, 1), -60000),
]
>>> xirr = fc.get_xirr(cashflow_data)
Changelog
0.0.0 (2020-07-29)
First release on PyPI.
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
Built Distribution
File details
Details for the file finance-calculator-0.0.5.tar.gz
.
File metadata
- Download URL: finance-calculator-0.0.5.tar.gz
- Upload date:
- Size: 133.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b58a475c1d58885b2e8a51f60e7931a15983865b79712f1ea3737835e2cd2ff9 |
|
MD5 | 4ee21c502037b5cff8fcc9801e99ca5b |
|
BLAKE2b-256 | 7ba50975679b56df779af66b0fd16afff9dd2114384dd1671b45699b0f1c6406 |
File details
Details for the file finance_calculator-0.0.5-py2.py3-none-any.whl
.
File metadata
- Download URL: finance_calculator-0.0.5-py2.py3-none-any.whl
- Upload date:
- Size: 12.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bbdee6d9200e9906560450076310d34f60f2ee5530e4c488c6451d2c059c6229 |
|
MD5 | c13709d1b8d0be2534083a41f0472871 |
|
BLAKE2b-256 | e462bbb1447126cdf452dab80aa6365833a5ce4d3e461d12189878b5f7ce10d1 |