可用资金{{ fmt(state.acc.cash) }}
账户权益{{ fmt(state.acc.equity) }}
持仓浮盈{{ fmt(state.acc.pnl) }}
今日最新价{{ fmt(state.lastPrice) }}
模型信号 · {{ state.interval }}
P(上涨){{ state.prob != null ? state.prob.toFixed(3) : '—' }}
判定{{ state.signal || '—' }}
模型版本{{ state.modelVer || '—' }}
剩余资金{{ state.modelCash != null ? fmt(state.modelCash) : '—' }}
账户权益{{ state.modelEquity != null ? fmt(state.modelEquity) : '—' }}
盈亏{{ state.modelPnl != null ? (state.modelPnl>0?'+':'') + fmt(state.modelPnl) : '—' }}
盈亏率{{ state.modelPnlPct != null ? (state.modelPnlPct>0?'+':'') + state.modelPnlPct + '%' : '—' }}
持仓{{ state.modelPosText || '—' }}
市场情绪{{ state.sentTxt || '—' }}
自动交易{{ state.stratOn ? '运行中 · ' + (state.modelName || state.interval) : '已禁用' }}