feat(data): 添加个股资金流向接口并重构速率限制配置

- 新增 moneyflow 资金流向数据同步模块
- 实现接口级速率限制配置(sync_config.py)
- 更新流动性相关因子定义
- 添加非对称量化损失函数
This commit is contained in:
2026-04-03 23:57:47 +08:00
parent c143815443
commit 9e7d4241c6
18 changed files with 1473 additions and 334 deletions

12
config/sync_config.json Normal file
View File

@@ -0,0 +1,12 @@
{
"default": {
"rate_limit": 150,
"threads": 1
},
"interfaces": {
"pro_bar": {
"rate_limit": 500,
"threads": 8
}
}
}