Minimal, self-contained CLI tools and library for quantitative finance.
- corr: Compute correlation matrices over time from returns.
- costs: Calculate Sharpe Ratio (SR) costs for instruments based on spread and fees.
From the repo root:
cd quantlibpython -m pip install -e .
This installs the quantlib command.
Pull a published image from GitHub Container Registry:
docker pull ghcr.io/rodionlim/quantlib-st:latest
Run a quick correlation query by piping a CSV into the container (one-liner):
cat sample_data/returns_10x4.csv | docker run --rm -i ghcr.io/rodionlim/quantlib-st:latest corr --min-periods 3 --ew-lookback 10
When publishing the image the Makefile also tags and pushes :latest in addition to the versioned tag.
import pandas as pd
import numpy as np
from quantlib_st import correlation
# Sample data
data = pd.DataFrame(
np.random.randn(100, 3),
columns=['Asset_A', 'Asset_B', 'Asset_C'],
index=pd.date_range(start='2020-01-01', periods=100, freq='D') # daily dates
)
# Compute correlation matrix
corr_matrix = correlation.correlation_over_time_for_returns(
data,
frequency='D', # resampling purpose
interval_frequency='7D',
date_method='expanding',
ew_lookback=50,
min_periods=10
)
print(corr_matrix.as_("jsonable"))
print(corr_matrix.as_("long"))