实盘交易 LIVE
自动交易 {{ autoTradingEnabled ? '已启用' : '已禁用' }}
Bitget API 密钥未配置,请在配置文件中设置 BITGET_API_KEY 和 BITGET_API_SECRET
实盘交易服务未启用(REAL_TRADING_ENABLED=false),仅可查看账户数据,无法执行交易
当前页面为兼容入口,统一管理请使用 trading 页面与 console 页面;这里的数据结构不再继续扩展。

加载中...

暂无持仓

暂无历史订单

交易对 方向 持仓量 入场价 标记价 杠杆 保证金 未实现盈亏 盈亏比例 强平价格
{{ formatSymbol(pos.symbol) }} {{ pos.side === 'long' ? '做多' : '做空' }} {{ pos.contracts || '0' }} ${{ pos.entryPrice ? parseFloat(pos.entryPrice).toLocaleString() : '-' }} ${{ pos.markPrice ? parseFloat(pos.markPrice).toLocaleString() : '-' }} {{ pos.leverage }}x ${{ pos.initialMargin ? parseFloat(pos.initialMargin).toFixed(2) : '-' }} {{ parseFloat(pos.unrealizedPnl || 0) >= 0 ? '+' : '' }}${{ parseFloat(pos.unrealizedPnl || 0).toFixed(2) }} {{ (pos.percentage || 0).toFixed(2) }}% ${{ pos.liquidationPrice ? parseFloat(pos.liquidationPrice).toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}) : '-' }}
交易对 方向 类型 价格 数量 成交数量 状态 时间
{{ formatSymbol(order.symbol) }} {{ order.side === 'buy' ? '做多' : '做空' }} {{ formatOrderStatus(order.status) }} ${{ order.price ? parseFloat(order.price).toLocaleString() : '-' }} {{ order.amount || order.filled || '0' }} {{ order.filled || '0' }} {{ order.datetime ? formatTime(order.datetime) : '-' }}