fix: restore strategy and data compatibility

This commit is contained in:
shy3130
2026-07-16 14:34:07 +08:00
parent c5049d26a7
commit c763a6970f
12 changed files with 433 additions and 62 deletions
+2 -1
View File
@@ -19,7 +19,8 @@ dependencies = [
"pyarrow>=16.0",
"pandas>=2.2", # 仅在 BacktestService 边界使用,见 §7.4 / ADR-19
"psutil>=5.9", # 独立回测 worker 的峰值 RSS 与退出后内存指标
"numba>=0.65.1", # Matrix 有效 K 线通用编译内核
# llvmlite 不再提供 macOS Intel wheel;该平台使用 Matrix 纯 Python fallback。
"numba>=0.65.1; sys_platform != 'darwin' or platform_machine != 'x86_64'",
"fastexcel>=0.10", # Polars 读取 xlsx/xls
# TickFlow 官方 SDK
"tickflow[all]>=0.1.23",