feat(live): 组合策略实盘(R3-1): live_accounts加strategy_type/pool/max_pool/benchmark列(ALTER迁移); supervisor对组合行拉runner_live子进程(env传参+崩溃检测); runner_live重写适配bullet_trade 0.9.2新API(strategy_file+broker_factory,旧initialize=/broker=已废弃)+live_strategy.py适配文件挂StrategyTemplate; 前端live/New双卡表单+列表组合徽标; 8测试 [vps]
CI/CD / test (push) Successful in 12s
CI/CD / nas-deploy (push) Successful in 27s
CI/CD / nas-verify (push) Successful in 12s

This commit is contained in:
2026-08-13 19:57:23 +08:00
parent baaa459481
commit fd0b9d0c36
9 changed files with 640 additions and 139 deletions
+9
View File
@@ -25,6 +25,11 @@ export interface LiveAccount {
total_return?: number | null
position_count?: number
instance?: string
/** 'cta' 个股 / 'portfolio' 组合 */
strategy_type?: string
pool?: string | null
max_pool?: number | null
benchmark?: string | null
}
export interface LiveCreateRequest {
@@ -39,6 +44,10 @@ export interface LiveCreateRequest {
connect_wait_sec?: number
init_wait_sec?: number
mini_path?: string
strategy_type?: string
pool?: string
max_pool?: number
benchmark?: string
}
export interface LiveStatus {