- 最近错误
-
- {plan.last_error}
+ 状态
+
+ {plan?.running ? (
+ 启动中
+ ) : (
+ 已停
+ )}
+
+ {" "}
+ · {phaseLabel} · 已完成 {plan?.rounds_done ?? 0} 组
+
- ) : null}
+
+ 选约条件
+
+ 剩余≥{fmt(plan?.min_option_hours, 0)}h · 期权杠杆≥
+ {fmt(plan?.min_option_leverage, 0)}x
+
+
+
+ 休息
+
+ {plan?.rest_left_sec ? `${plan.rest_left_sec}s / ${plan.rest_seconds}s` : "—"}
+
+
+
+ 权益 / 杠杆
+
+ {fmt(plan?.ledger?.equity)} / 可用 {fmt(plan?.ledger?.available)} ·{" "}
+ {fmt(plan?.leverage, 0)}x
+
+
+
+ 当前组
+ {pos?.group_id || "—"}
+
+
+ 信号方向
+ {biasTag}
+
+
+ 出场规则
+ {exitRuleLabel}
+
+
+ 净盈利 / 目标
+
+
+ {open ? fmt(netPnl) : "—"}
+
+ {" / "}
+ {open || exitMode === "fixed_usdt" ? fmt(exitTarget) : "—"}
+
+
+
+ 永续浮盈
+ {fmt(pos?.perp_upl)}
+
+
+ 期权浮盈
+ {fmt(pos?.option_upl)}
+
+ {plan?.last_error ? (
+
+ 最近错误
+
+ {plan.last_error}
+
+
+ ) : null}
+