crypto_empyrical is a fork of Quantopian's Empyrical package modified to work for 24/7 markets of cryptocurrency
Project description
crypto_empyrical
crypto_empyrical is a fork of Quantopian's Empyrical package modified by Jesse to work for 24/7 markets of cryptocurrency.
Table of Contents
Installation
pip install crypto_empyrical
Usage
Simple Statistics
import numpy as np
from crypto_empyrical import max_drawdown, alpha_beta
returns = np.array([.01, .02, .03, -.4, -.06, -.02])
benchmark_returns = np.array([.02, .02, .03, -.35, -.05, -.01])
# calculate the max drawdown
max_drawdown(returns)
# calculate alpha and beta
alpha, beta = alpha_beta(returns, benchmark_returns)
Rolling Measures
import numpy as np
from crypto_empyrical import roll_max_drawdown
returns = np.array([.01, .02, .03, -.4, -.06, -.02])
# calculate the rolling max drawdown
roll_max_drawdown(returns, window=3)
Pandas Support
import pandas as pd
from crypto_empyrical import roll_up_capture, capture
returns = pd.Series([.01, .02, .03, -.4, -.06, -.02])
# calculate a capture ratio
capture(returns)
# calculate capture for up markets on a rolling 60 day basis
roll_up_capture(returns, window=60)
Testing
- install requirements
- "nose>=1.3.7",
- "parameterized>=0.6.1"
./runtests.py
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
crypto_empyrical-1.0.4.tar.gz
(58.7 kB
view details)
Built Distribution
File details
Details for the file crypto_empyrical-1.0.4.tar.gz
.
File metadata
- Download URL: crypto_empyrical-1.0.4.tar.gz
- Upload date:
- Size: 58.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.25.0 setuptools/46.1.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4dd434258614140e51e0ef4e5d021c06c406af65e85ba8c6d35857a7cbc1f636 |
|
MD5 | 406c08461cb5931f845fb652c9062c80 |
|
BLAKE2b-256 | 71b0d5c354775c091f6602d367d61ad9321f5bc28837e7eb58abb0bd6ee8560c |
File details
Details for the file crypto_empyrical-1.0.4-py3-none-any.whl
.
File metadata
- Download URL: crypto_empyrical-1.0.4-py3-none-any.whl
- Upload date:
- Size: 44.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.25.0 setuptools/46.1.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65903cf14501d638c7efe10ff76c363468a1481af3201ed7dac2d23906c5cddf |
|
MD5 | 05c2670d81c4cb666f716cc41949633d |
|
BLAKE2b-256 | dc54eb13e24a289f41ea445390ece8bdd3879521ad555222d7e256d0486fa49c |