Skip to main content

High-performance quantitative trading framework based on Rust and Python

Project description

AKQuant

PyPI Version Python Versions License AKShare Downloads

AKQuant

AKQuant 是一款专为量化投研设计的下一代高性能混合框架。核心引擎采用 Rust 编写以确保极致的执行效率,同时提供优雅的 Python 接口以维持灵活的策略开发体验。

🚀 核心亮点:

  • 极致性能:得益于 Rust 的零开销抽象与 Zero-Copy 数据架构,回测速度较传统纯 Python 框架(如 Backtrader)提升 X倍+
  • 原生 ML 支持:内置 Walk-forward Validation(滚动训练)框架,无缝集成 PyTorch/Scikit-learn,让 AI 策略开发从实验到回测一气呵成。
  • 参数优化:内置多进程网格搜索(Grid Search)框架,支持策略参数的高效并行优化。
  • 专业级风控:内置完善的订单流管理与即时风控模块,支持多资产组合回测。

👉 阅读完整文档 | English Documentation

安装说明

AKQuant 已发布至 PyPI,无需安装 Rust 环境即可直接使用。

pip install akquant

快速开始

以下是一个简单的策略示例:

import akquant as aq
import akshare as ak
from akquant import Strategy

# 1. 准备数据
# 使用 akshare 获取 A 股历史数据 (需安装: pip install akshare)
df = ak.stock_zh_a_daily(symbol="sh600000", start_date="20250212", end_date="20260212")


class MyStrategy(Strategy):
    def on_bar(self, bar):
        # 简单策略示例:
        # 当收盘价 > 开盘价 (阳线) -> 买入
        # 当收盘价 < 开盘价 (阴线) -> 卖出

        # 获取当前持仓
        current_pos = self.get_position(bar.symbol)

        if current_pos == 0 and bar.close > bar.open:
            self.buy(symbol=bar.symbol, quantity=100)
            print(f"[{bar.timestamp_str}] Buy 100 at {bar.close:.2f}")

        elif current_pos > 0 and bar.close < bar.open:
            self.close_position(symbol=bar.symbol)
            print(f"[{bar.timestamp_str}] Sell 100 at {bar.close:.2f}")


# 运行回测
result = aq.run_backtest(
    cash=100000.0,
    data=df,
    strategy=MyStrategy,
    symbol="sh600000"
)

# 打印回测结果
print("\n=== Backtest Result ===")
print(result)

运行结果示例:

=== Backtest Result ===
BacktestResult:
                                            Value
name
start_time              2025-02-12 00:00:00+08:00
end_time                2026-02-11 00:00:00+08:00
duration                        364 days, 0:00:00
total_bars                                    248
trade_count                                  62.0
initial_market_value                     100000.0
end_market_value                      99145.34904
total_pnl                                  -196.0
unrealized_pnl                                0.0
total_return_pct                        -0.854651
annualized_return                        -0.00857
volatility                               0.002504
total_profit                                548.0
total_loss                                 -744.0
total_commission                        658.65096
max_drawdown                            854.65096
max_drawdown_pct                         0.854651
win_rate                                22.580645
loss_rate                               77.419355
winning_trades                               14.0
losing_trades                                48.0
avg_pnl                                  -3.16129
avg_return_pct                          -0.199577
avg_trade_bars                           1.967742
avg_profit                              39.142857
avg_profit_pct                           3.371156
avg_winning_trade_bars                        4.5
avg_loss                                    -15.5
avg_loss_pct                            -1.241041
avg_losing_trade_bars                    1.229167
largest_win                                 120.0
largest_win_pct                         10.178117
largest_win_bars                              7.0
largest_loss                                -70.0
largest_loss_pct                        -5.380477
largest_loss_bars                             1.0
max_wins                                      2.0
max_losses                                    9.0
sharpe_ratio                            -3.421951
sortino_ratio                           -4.061416
profit_factor                            0.736559
ulcer_index                              0.004391
upi                                     -1.951616
equity_r2                                   0.926
std_error                               70.598038
calmar_ratio                            -1.002735
exposure_time_pct                       49.193548
var_95                                  -0.000281
var_99                                  -0.000624
cvar_95                                 -0.000441
cvar_99                                 -0.000709
sqn                                     -0.743693
kelly_criterion                         -0.080763

文档索引

Citation

Please use this bibtex if you want to cite this repository in your publications:

@misc{akquant,
    author = {Albert King},
    title = {AKQuant},
    year = {2026},
    publisher = {GitHub},
    journal = {GitHub repository},
    howpublished = {\url{https://github.com/akfamily/akquant}},
}

License

MIT License

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

akquant-0.1.22.tar.gz (288.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

akquant-0.1.22-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (903.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

akquant-0.1.22-cp310-abi3-win_amd64.whl (687.0 kB view details)

Uploaded CPython 3.10+Windows x86-64

akquant-0.1.22-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (907.5 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ x86-64

akquant-0.1.22-cp310-abi3-macosx_11_0_arm64.whl (825.2 kB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

File details

Details for the file akquant-0.1.22.tar.gz.

File metadata

  • Download URL: akquant-0.1.22.tar.gz
  • Upload date:
  • Size: 288.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for akquant-0.1.22.tar.gz
Algorithm Hash digest
SHA256 17d262f6d0225051dab0c4e64b9354afa5d21b1350c86e50031f0b7aba40914a
MD5 672a526d75235aa648e9ecd5f17908a9
BLAKE2b-256 6a87d6f66be212e4e4f4a0828f34f9f262a13af9e30dd5c675dca7124d46601e

See more details on using hashes here.

Provenance

The following attestation bundles were made for akquant-0.1.22.tar.gz:

Publisher: release.yml on akfamily/akquant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file akquant-0.1.22-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for akquant-0.1.22-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f8bca8d1e156969f23d987a2f4630e7ad41ea7dddfe17dcb0670e4b53dd4d91
MD5 d5b8276ef5ba71707263c770e4057a55
BLAKE2b-256 030b8419fc491392f11859281f02772d0b61f917c553223fb3e3bb9097c36d4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for akquant-0.1.22-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on akfamily/akquant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file akquant-0.1.22-cp310-abi3-win_amd64.whl.

File metadata

  • Download URL: akquant-0.1.22-cp310-abi3-win_amd64.whl
  • Upload date:
  • Size: 687.0 kB
  • Tags: CPython 3.10+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for akquant-0.1.22-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 02f3090790c4b52dbef3bd267ede8ef808bf342571cbdd23d31f993a36077f92
MD5 9a8a8132bf02655ff4c97a81c574481d
BLAKE2b-256 d30609f630f84ae290d19df0cd7c142b6c0f93e0274ecd548fbd8428e0637c3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for akquant-0.1.22-cp310-abi3-win_amd64.whl:

Publisher: release.yml on akfamily/akquant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file akquant-0.1.22-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for akquant-0.1.22-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fa133733ffc9f3d4089a51f35ef89dc65346e33b4a8f1c0e84d917ab21c7ffa
MD5 50a2461ca3d995e2feac1dffdf3ea139
BLAKE2b-256 2d249d2360eafc128bba2d1ab5694a7171b1ea937ceab40f576d779e2bd97731

See more details on using hashes here.

Provenance

The following attestation bundles were made for akquant-0.1.22-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on akfamily/akquant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file akquant-0.1.22-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for akquant-0.1.22-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f76ea7ddc332c924fe1bb848cc9550f09b6e214b6ff409d470259601d3de97da
MD5 14464acebe3750f4e2dff93772b70a27
BLAKE2b-256 d8385bbbd92c16d22de75bf14602fcc2c886994bad335497e20682bd1bfafdf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for akquant-0.1.22-cp310-abi3-macosx_11_0_arm64.whl:

Publisher: release.yml on akfamily/akquant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page