| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Quantalytics is a fast, modern Python library for generating quantitative performance metrics, interactive charts, and publication-ready reports. It is designed for strategy researchers, portfolio managers, and data scientists who want an ergonomic toolchain without the overhead of large monolithic frameworks.
pip install quantalyticsimport pandas as pd
import quantalytics as qa
returns = pd.Series(
[0.01, 0.02, -0.005, 0.015, -0.01, 0.03],
index=pd.date_range("2024-01-01", periods=6, freq="B"),
)
summary = qa.metrics.performance_summary(returns)
print(summary.sharpe, summary.calmar)
fig = qa.charts.cumulative_returns_chart(returns)
fig.show()Full tutorials and API references live on our Docusaurus site: https://pattertj.github.io/quantalytics/. Start with the introduction, then dive into the stats, metrics, charts, or reports guides as needed.
MIT License. See LICENSE.
| Back | FazBrowse Home | New Git URL |