update
This commit is contained in:
parent
cb6ab397fe
commit
83c9033967
@ -2,74 +2,82 @@
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<title>Hyperliquid 交易监控 | AI Agent</title>
|
||||
<link rel="stylesheet" href="/static/css/style.css">
|
||||
<script src="https://cdn.jsdelivr.net/npm/vue@3/dist/vue.global.prod.js"></script>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
/* 防止横向滚动 */
|
||||
html, body {
|
||||
overflow-x: hidden;
|
||||
max-width: 100vw;
|
||||
}
|
||||
|
||||
/* 覆盖全局 #app 样式 */
|
||||
#app {
|
||||
height: auto;
|
||||
display: block;
|
||||
align-items: initial;
|
||||
justify-content: initial;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
background: #0d1117;
|
||||
color: #c9d1d9;
|
||||
.trading-page {
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
background: var(--bg-primary);
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.header {
|
||||
.trading-container {
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/* 固定顶部区域 */
|
||||
.sticky-header {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
background: var(--bg-primary);
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.trading-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 24px;
|
||||
padding-bottom: 16px;
|
||||
border-bottom: 1px solid #30363d;
|
||||
margin-bottom: 20px;
|
||||
padding: 10px 0 20px 0;
|
||||
border-bottom: 1px solid var(--border);
|
||||
background: var(--bg-primary);
|
||||
}
|
||||
|
||||
.title {
|
||||
.trading-title {
|
||||
font-size: 24px;
|
||||
font-weight: 600;
|
||||
color: #58a6ff;
|
||||
font-weight: 300;
|
||||
color: var(--text-primary);
|
||||
user-select: none;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.status-badge {
|
||||
padding: 4px 12px;
|
||||
border-radius: 20px;
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.status-enabled {
|
||||
background: #238636;
|
||||
color: #3fb950;
|
||||
}
|
||||
|
||||
.status-disabled {
|
||||
background: #8c959f;
|
||||
color: #6e7681;
|
||||
.trading-title span {
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.refresh-btn {
|
||||
padding: 8px 16px;
|
||||
background: #21262d;
|
||||
border: 1px solid #30363d;
|
||||
color: #c9d1d9;
|
||||
border-radius: 6px;
|
||||
background: transparent;
|
||||
border: 1px solid var(--accent);
|
||||
color: var(--accent);
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.refresh-btn:hover {
|
||||
background: #30363d;
|
||||
background: var(--accent);
|
||||
color: var(--bg-primary);
|
||||
}
|
||||
|
||||
.refresh-btn.loading {
|
||||
@ -77,48 +85,69 @@
|
||||
cursor: wait;
|
||||
}
|
||||
|
||||
/* 账户信息卡片 */
|
||||
/* 状态标签 */
|
||||
.status-badge {
|
||||
display: inline-block;
|
||||
padding: 4px 12px;
|
||||
border-radius: 20px;
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.status-enabled {
|
||||
background: rgba(0, 255, 65, 0.1);
|
||||
color: #00ff41;
|
||||
border: 1px solid rgba(0, 255, 65, 0.3);
|
||||
}
|
||||
|
||||
.status-disabled {
|
||||
background: rgba(128, 128, 128, 0.1);
|
||||
color: var(--text-secondary);
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
|
||||
/* 统计卡片 */
|
||||
.stats-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
||||
gap: 16px;
|
||||
margin-bottom: 24px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.stat-card {
|
||||
background: #161b22;
|
||||
border: 1px solid #30363d;
|
||||
border-radius: 8px;
|
||||
padding: 20px;
|
||||
background: var(--bg-secondary);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 4px;
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font-size: 12px;
|
||||
color: #8b949e;
|
||||
margin-bottom: 8px;
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
font-size: 24px;
|
||||
font-weight: 600;
|
||||
color: #58a6ff;
|
||||
font-weight: 300;
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.stat-value.positive {
|
||||
color: #3fb950;
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.stat-value.negative {
|
||||
color: #f85149;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.stat-value.warning {
|
||||
color: #d29922;
|
||||
color: #f59e0b;
|
||||
}
|
||||
|
||||
.stat-sub {
|
||||
font-size: 11px;
|
||||
color: #8b949e;
|
||||
color: var(--text-secondary);
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
@ -130,10 +159,11 @@
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
/* 面板 */
|
||||
.panel {
|
||||
background: #161b22;
|
||||
border: 1px solid #30363d;
|
||||
border-radius: 8px;
|
||||
background: var(--bg-secondary);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 4px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
@ -142,29 +172,29 @@
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 16px 20px;
|
||||
border-bottom: 1px solid #30363d;
|
||||
background: #0d1117;
|
||||
border-bottom: 1px solid var(--border);
|
||||
background: var(--bg-primary);
|
||||
}
|
||||
|
||||
.panel-title {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
color: #c9d1d9;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.panel-count {
|
||||
font-size: 12px;
|
||||
color: #8b949e;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.panel-body {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* 列表样式 */
|
||||
/* 列表项 */
|
||||
.list-item {
|
||||
padding: 16px 20px;
|
||||
border-bottom: 1px solid #21262d;
|
||||
border-bottom: 1px solid var(--border);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
@ -174,6 +204,10 @@
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.list-item:hover {
|
||||
background: var(--bg-tertiary);
|
||||
}
|
||||
|
||||
.item-left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
@ -183,36 +217,19 @@
|
||||
.symbol {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
color: #c9d1d9;
|
||||
color: var(--text-primary);
|
||||
min-width: 100px;
|
||||
}
|
||||
|
||||
.side-badge {
|
||||
padding: 4px 8px;
|
||||
border-radius: 4px;
|
||||
font-size: 11px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.side-long {
|
||||
background: #238636;
|
||||
color: #3fb950;
|
||||
}
|
||||
|
||||
.side-short {
|
||||
background: #8b3c3c;
|
||||
color: #f85149;
|
||||
}
|
||||
|
||||
.item-details {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
font-size: 13px;
|
||||
color: #8b949e;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.item-detail span {
|
||||
color: #c9d1d9;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.item-right {
|
||||
@ -225,18 +242,59 @@
|
||||
}
|
||||
|
||||
.pnl.positive {
|
||||
color: #3fb950;
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.pnl.negative {
|
||||
color: #f85149;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
/* 方向标签 */
|
||||
.side-badge {
|
||||
display: inline-block;
|
||||
padding: 4px 8px;
|
||||
border-radius: 2px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.side-badge.long {
|
||||
background: rgba(0, 255, 65, 0.1);
|
||||
color: #00ff41;
|
||||
}
|
||||
|
||||
.side-badge.short {
|
||||
background: rgba(255, 68, 68, 0.1);
|
||||
color: #ff4444;
|
||||
}
|
||||
|
||||
/* 订单类型标签 */
|
||||
.order-type-badge {
|
||||
padding: 2px 8px;
|
||||
border-radius: 2px;
|
||||
font-size: 10px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.order-entry {
|
||||
background: rgba(59, 130, 246, 0.1);
|
||||
color: #3b82f6;
|
||||
}
|
||||
|
||||
.order-tp {
|
||||
background: rgba(0, 255, 65, 0.1);
|
||||
color: #00ff41;
|
||||
}
|
||||
|
||||
.order-sl {
|
||||
background: rgba(255, 68, 68, 0.1);
|
||||
color: #ff4444;
|
||||
}
|
||||
|
||||
/* 空状态 */
|
||||
.empty-state {
|
||||
padding: 60px 20px;
|
||||
text-align: center;
|
||||
color: #6e7681;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.empty-icon {
|
||||
@ -248,34 +306,63 @@
|
||||
/* 操作按钮 */
|
||||
.action-btn {
|
||||
padding: 6px 12px;
|
||||
background: #21262d;
|
||||
border: 1px solid #30363d;
|
||||
color: #c9d1d9;
|
||||
border-radius: 6px;
|
||||
background: transparent;
|
||||
border: 1px solid var(--border);
|
||||
color: var(--text-primary);
|
||||
border-radius: 4px;
|
||||
font-size: 12px;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.action-btn:hover {
|
||||
background: #30363d;
|
||||
background: var(--bg-tertiary);
|
||||
border-color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.action-btn.danger {
|
||||
border-color: #f85149;
|
||||
color: #f85149;
|
||||
border-color: #ef4444;
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.action-btn.danger:hover {
|
||||
background: #f85149;
|
||||
color: white;
|
||||
background: rgba(239, 68, 68, 0.1);
|
||||
}
|
||||
|
||||
/* 加载动画 */
|
||||
@keyframes spin {
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
.spinner {
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
border: 2px solid var(--border);
|
||||
border-top-color: var(--accent);
|
||||
border-radius: 50%;
|
||||
animation: spin 0.6s linear infinite;
|
||||
}
|
||||
|
||||
/* 订单分类标题 */
|
||||
.order-section-title {
|
||||
padding: 12px 20px;
|
||||
font-size: 12px;
|
||||
color: var(--text-secondary);
|
||||
background: var(--bg-primary);
|
||||
border-top: 1px solid var(--border);
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.order-section-title:first-child {
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
/* 响应式 */
|
||||
@media (max-width: 768px) {
|
||||
.stats-grid {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 12px;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.content-grid {
|
||||
@ -284,7 +371,11 @@
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
font-size: 20px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.symbol {
|
||||
@ -298,262 +389,197 @@
|
||||
font-size: 11px;
|
||||
}
|
||||
}
|
||||
|
||||
/* 加载动画 */
|
||||
@keyframes spin {
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
.spinner {
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
border: 2px solid #30363d;
|
||||
border-top-color: #58a6ff;
|
||||
border-radius: 50%;
|
||||
animation: spin 0.6s linear infinite;
|
||||
}
|
||||
|
||||
/* 订单类型标签 */
|
||||
.order-type-badge {
|
||||
padding: 2px 8px;
|
||||
border-radius: 4px;
|
||||
font-size: 10px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.order-entry {
|
||||
background: #1f6feb;
|
||||
color: #58a6ff;
|
||||
}
|
||||
|
||||
.order-tp {
|
||||
background: #238636;
|
||||
color: #3fb950;
|
||||
}
|
||||
|
||||
.order-sl {
|
||||
background: #8b3c3c;
|
||||
color: #f85149;
|
||||
}
|
||||
|
||||
/* 风险指标 */
|
||||
.risk-indicator {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.risk-bar {
|
||||
flex: 1;
|
||||
height: 4px;
|
||||
background: #21262d;
|
||||
border-radius: 2px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.risk-fill {
|
||||
height: 100%;
|
||||
background: #58a6ff;
|
||||
transition: width 0.3s ease;
|
||||
}
|
||||
|
||||
.risk-fill.warning {
|
||||
background: #d29922;
|
||||
}
|
||||
|
||||
.risk-fill.danger {
|
||||
background: #f85149;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app">
|
||||
<div class="container">
|
||||
<!-- 头部 -->
|
||||
<div class="header">
|
||||
<div class="title">🔥 Hyperliquid 交易监控</div>
|
||||
<div style="display: flex; align-items: center; gap: 12px;">
|
||||
<span class="status-badge" :class="enabled ? 'status-enabled' : 'status-disabled'">
|
||||
{{ enabled ? '已启用' : '未启用' }}
|
||||
</span>
|
||||
<button class="refresh-btn" @click="refreshData" :class="{ loading: loading }">
|
||||
<span v-if="loading" class="spinner"></span>
|
||||
{{ loading ? '刷新中...' : '刷新' }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 未启用提示 -->
|
||||
<div v-if="!enabled" class="empty-state">
|
||||
<div class="empty-icon">🔒</div>
|
||||
<p>Hyperliquid 实盘交易未启用</p>
|
||||
<p style="font-size: 13px; margin-top: 8px;">请在 .env 文件中设置 hyperliquid_trading_enabled=true</p>
|
||||
</div>
|
||||
|
||||
<!-- 已启用内容 -->
|
||||
<div v-else>
|
||||
<!-- 账户信息 -->
|
||||
<div class="stats-grid">
|
||||
<div class="stat-card">
|
||||
<div class="stat-label">账户价值</div>
|
||||
<div class="stat-value">${{ formatNumber(account.account_value) }}</div>
|
||||
<div class="stat-sub">可用: ${{ formatNumber(account.available_balance) }}</div>
|
||||
</div>
|
||||
|
||||
<div class="stat-card">
|
||||
<div class="stat-label">总持仓价值</div>
|
||||
<div class="stat-value">${{ formatNumber(account.total_position_value) }}</div>
|
||||
<div class="stat-sub">{{ positions.length }} 个持仓</div>
|
||||
</div>
|
||||
|
||||
<div class="stat-card">
|
||||
<div class="stat-label">总杠杆率</div>
|
||||
<div class="stat-value" :class="getLeverageClass(account.current_leverage)">
|
||||
{{ account.current_leverage?.toFixed(1) || '0.0' }}x
|
||||
</div>
|
||||
<div class="stat-sub">
|
||||
上限: {{ account.max_leverage }}x
|
||||
<span v-if="leverageUtilization > 80" style="color: #d29922; margin-left: 8px;">
|
||||
⚠️
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="stat-card">
|
||||
<div class="stat-label">回撤</div>
|
||||
<div class="stat-value" :class="getDrawdownClass(account.drawdown)">
|
||||
{{ account.drawdown?.toFixed(1) || '0.0' }}%
|
||||
</div>
|
||||
<div class="stat-sub">熔断线: {{ account.circuit_breaker_threshold?.toFixed(0) }}%</div>
|
||||
</div>
|
||||
|
||||
<div class="stat-card">
|
||||
<div class="stat-label">已用保证金</div>
|
||||
<div class="stat-value">${{ formatNumber(account.total_margin_used) }}</div>
|
||||
</div>
|
||||
|
||||
<div class="stat-card">
|
||||
<div class="stat-label">挂单数量</div>
|
||||
<div class="stat-value">{{ orders.entry_orders + orders.tp_sl_orders }}</div>
|
||||
<div class="stat-sub">
|
||||
开仓: {{ orders.entry_orders }} |
|
||||
TP/SL: {{ orders.tp_sl_orders }}
|
||||
</div>
|
||||
<div class="trading-page">
|
||||
<div class="trading-container">
|
||||
<!-- 头部 -->
|
||||
<div class="trading-header">
|
||||
<div class="trading-title">🔥 Hyperliquid 交易监控</div>
|
||||
<div style="display: flex; align-items: center; gap: 12px;">
|
||||
<span class="status-badge" :class="enabled ? 'status-enabled' : 'status-disabled'">
|
||||
{{ enabled ? '已启用' : '未启用' }}
|
||||
</span>
|
||||
<button class="refresh-btn" @click="refreshData" :class="{ loading: loading }">
|
||||
<span v-if="loading" class="spinner"></span>
|
||||
{{ loading ? '刷新中...' : '刷新' }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 持仓和挂单 -->
|
||||
<div class="content-grid">
|
||||
<!-- 持仓列表 -->
|
||||
<div class="panel">
|
||||
<div class="panel-header">
|
||||
<div class="panel-title">📈 持仓 ({{ positions.length }})</div>
|
||||
<!-- 未启用提示 -->
|
||||
<div v-if="!enabled" class="empty-state">
|
||||
<div class="empty-icon">🔒</div>
|
||||
<p>Hyperliquid 实盘交易未启用</p>
|
||||
<p style="font-size: 13px; margin-top: 8px;">请在 .env 文件中设置 hyperliquid_trading_enabled=true</p>
|
||||
</div>
|
||||
|
||||
<!-- 已启用内容 -->
|
||||
<div v-else>
|
||||
<!-- 账户信息 -->
|
||||
<div class="stats-grid">
|
||||
<div class="stat-card">
|
||||
<div class="stat-label">账户价值</div>
|
||||
<div class="stat-value">${{ formatNumber(account.account_value) }}</div>
|
||||
<div class="stat-sub">可用: ${{ formatNumber(account.available_balance) }}</div>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div v-if="positions.length === 0" class="empty-state">
|
||||
<div class="empty-icon">📊</div>
|
||||
<p>暂无持仓</p>
|
||||
|
||||
<div class="stat-card">
|
||||
<div class="stat-label">总持仓价值</div>
|
||||
<div class="stat-value">${{ formatNumber(account.total_position_value) }}</div>
|
||||
<div class="stat-sub">{{ positions.length }} 个持仓</div>
|
||||
</div>
|
||||
|
||||
<div class="stat-card">
|
||||
<div class="stat-label">总杠杆率</div>
|
||||
<div class="stat-value" :class="getLeverageClass(account.current_leverage)">
|
||||
{{ account.current_leverage?.toFixed(1) || '0.0' }}x
|
||||
</div>
|
||||
<div v-else>
|
||||
<div v-for="pos in positions" :key="pos.symbol" class="list-item">
|
||||
<div class="item-left">
|
||||
<div>
|
||||
<div class="symbol">{{ pos.symbol }}</div>
|
||||
<span class="side-badge" :class="pos.side === 'long' ? 'side-long' : 'side-short'">
|
||||
{{ pos.side === 'long' ? '做多' : '做空' }}
|
||||
</span>
|
||||
</div>
|
||||
<div class="item-details">
|
||||
<div class="item-detail">
|
||||
数量: <span>{{ pos.size?.toFixed(6) }}</span>
|
||||
</div>
|
||||
<div class="item-detail">
|
||||
入场价: <span>${{ formatNumber(pos.entry_price) }}</span>
|
||||
</div>
|
||||
<div class="item-detail">
|
||||
杠杆: <span>{{ pos.leverage }}x</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-right">
|
||||
<div class="pnl" :class="getPnLClass(pos.unrealized_pnl)">
|
||||
{{ pos.unrealized_pnl >= 0 ? '+' : '' }}${{ formatNumber(pos.unrealized_pnl) }}
|
||||
</div>
|
||||
<div style="font-size: 11px; color: #8b949e; margin-top: 4px;">
|
||||
TP: ${{ formatNumber(pos.take_profit) }} | SL: ${{ formatNumber(pos.stop_loss) }}
|
||||
</div>
|
||||
<button class="action-btn danger" @click="closePosition(pos.symbol)" style="margin-top: 8px;">
|
||||
平仓
|
||||
</button>
|
||||
</div>
|
||||
<div class="stat-sub">
|
||||
上限: {{ account.max_leverage }}x
|
||||
<span v-if="leverageUtilization > 80" style="color: #f59e0b; margin-left: 8px;">
|
||||
⚠️
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="stat-card">
|
||||
<div class="stat-label">回撤</div>
|
||||
<div class="stat-value" :class="getDrawdownClass(account.drawdown)">
|
||||
{{ account.drawdown?.toFixed(1) || '0.0' }}%
|
||||
</div>
|
||||
<div class="stat-sub">熔断线: {{ account.circuit_breaker_threshold?.toFixed(0) }}%</div>
|
||||
</div>
|
||||
|
||||
<div class="stat-card">
|
||||
<div class="stat-label">已用保证金</div>
|
||||
<div class="stat-value">${{ formatNumber(account.total_margin_used) }}</div>
|
||||
</div>
|
||||
|
||||
<div class="stat-card">
|
||||
<div class="stat-label">挂单数量</div>
|
||||
<div class="stat-value">{{ orders.entry_orders + orders.tp_sl_orders }}</div>
|
||||
<div class="stat-sub">
|
||||
开仓: {{ orders.entry_orders }} |
|
||||
TP/SL: {{ orders.tp_sl_orders }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 持仓和挂单 -->
|
||||
<div class="content-grid">
|
||||
<!-- 持仓列表 -->
|
||||
<div class="panel">
|
||||
<div class="panel-header">
|
||||
<div class="panel-title">📈 持仓 ({{ positions.length }})</div>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div v-if="positions.length === 0" class="empty-state">
|
||||
<div class="empty-icon">📊</div>
|
||||
<p>暂无持仓</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 挂单列表 -->
|
||||
<div class="panel">
|
||||
<div class="panel-header">
|
||||
<div class="panel-title">📋 挂单 ({{ orders.entry_orders + orders.tp_sl_orders }})</div>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div v-if="orders.entry_orders + orders.tp_sl_orders === 0" class="empty-state">
|
||||
<div class="empty-icon">📋</div>
|
||||
<p>暂无挂单</p>
|
||||
</div>
|
||||
<div v-else>
|
||||
<!-- 入场单 -->
|
||||
<div v-if="entryOrdersList.length > 0">
|
||||
<div style="padding: 12px 20px; font-size: 12px; color: #8b949e; background: #0d1117;">
|
||||
入场单 ({{ entryOrdersList.length }})
|
||||
</div>
|
||||
<div v-for="order in entryOrdersList" :key="order.order_id" class="list-item">
|
||||
<div v-else>
|
||||
<div v-for="pos in positions" :key="pos.symbol" class="list-item">
|
||||
<div class="item-left">
|
||||
<div class="symbol">{{ order.symbol }}</div>
|
||||
<div>
|
||||
<div class="symbol">{{ pos.symbol }}</div>
|
||||
<span class="side-badge" :class="pos.side === 'long' ? 'long' : 'short'">
|
||||
{{ pos.side === 'long' ? '做多' : '做空' }}
|
||||
</span>
|
||||
</div>
|
||||
<div class="item-details">
|
||||
<div class="item-detail">
|
||||
{{ order.side === 'B' ? '买入' : '卖出' }}
|
||||
数量: <span>{{ pos.size?.toFixed(6) }}</span>
|
||||
</div>
|
||||
<div class="item-detail">
|
||||
@ ${{ formatNumber(order.price) }}
|
||||
入场价: <span>${{ formatNumber(pos.entry_price) }}</span>
|
||||
</div>
|
||||
<div class="item-detail">
|
||||
{{ order.size }}
|
||||
杠杆: <span>{{ pos.leverage }}x</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-right">
|
||||
<button class="action-btn danger" @click="cancelOrder(order.symbol)">
|
||||
取消
|
||||
<div class="pnl" :class="getPnLClass(pos.unrealized_pnl)">
|
||||
{{ pos.unrealized_pnl >= 0 ? '+' : '' }}${{ formatNumber(pos.unrealized_pnl) }}
|
||||
</div>
|
||||
<div style="font-size: 11px; color: var(--text-secondary); margin-top: 4px;">
|
||||
TP: ${{ formatNumber(pos.take_profit) }} | SL: ${{ formatNumber(pos.stop_loss) }}
|
||||
</div>
|
||||
<button class="action-btn danger" @click="closePosition(pos.symbol)" style="margin-top: 8px;">
|
||||
平仓
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 止盈止损单 -->
|
||||
<div v-if="tpSlOrdersList.length > 0">
|
||||
<div style="padding: 12px 20px; font-size: 12px; color: #8b949e; background: #0d1117; border-top: 1px solid #30363d;">
|
||||
止盈止损 ({{ tpSlOrdersList.length }})
|
||||
</div>
|
||||
<div v-for="order in tpSlOrdersList" :key="order.order_id" class="list-item">
|
||||
<div class="item-left">
|
||||
<div class="symbol">{{ order.symbol }}</div>
|
||||
<div class="item-details">
|
||||
<div class="item-detail">
|
||||
<span class="order-type-badge order-tp">TP</span>
|
||||
<span class="order-type-badge order-sl">SL</span>
|
||||
</div>
|
||||
<div class="item-detail">
|
||||
@ ${{ formatNumber(order.price) }}
|
||||
</div>
|
||||
<div class="item-detail">
|
||||
{{ order.size }}
|
||||
<!-- 挂单列表 -->
|
||||
<div class="panel">
|
||||
<div class="panel-header">
|
||||
<div class="panel-title">📋 挂单 ({{ orders.entry_orders + orders.tp_sl_orders }})</div>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div v-if="orders.entry_orders + orders.tp_sl_orders === 0" class="empty-state">
|
||||
<div class="empty-icon">📋</div>
|
||||
<p>暂无挂单</p>
|
||||
</div>
|
||||
<div v-else>
|
||||
<!-- 入场单 -->
|
||||
<div v-if="entryOrdersList.length > 0">
|
||||
<div class="order-section-title">
|
||||
入场单 ({{ entryOrdersList.length }})
|
||||
</div>
|
||||
<div v-for="order in entryOrdersList" :key="order.order_id" class="list-item">
|
||||
<div class="item-left">
|
||||
<div class="symbol">{{ order.symbol }}</div>
|
||||
<div class="item-details">
|
||||
<div class="item-detail">
|
||||
{{ order.side === 'B' ? '买入' : '卖出' }}
|
||||
</div>
|
||||
<div class="item-detail">
|
||||
@ ${{ formatNumber(order.price) }}
|
||||
</div>
|
||||
<div class="item-detail">
|
||||
{{ order.size }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-right">
|
||||
<button class="action-btn danger" @click="cancelOrder(order.symbol)">
|
||||
取消
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-right">
|
||||
<span style="font-size: 11px; color: #8b949e;">自动执行</span>
|
||||
</div>
|
||||
|
||||
<!-- 止盈止损单 -->
|
||||
<div v-if="tpSlOrdersList.length > 0">
|
||||
<div class="order-section-title">
|
||||
止盈止损 ({{ tpSlOrdersList.length }})
|
||||
</div>
|
||||
<div v-for="order in tpSlOrdersList" :key="order.order_id" class="list-item">
|
||||
<div class="item-left">
|
||||
<div class="symbol">{{ order.symbol }}</div>
|
||||
<div class="item-details">
|
||||
<div class="item-detail">
|
||||
<span class="order-type-badge order-tp" v-if="order.is_tp">TP</span>
|
||||
<span class="order-type-badge order-sl" v-if="order.is_sl">SL</span>
|
||||
</div>
|
||||
<div class="item-detail">
|
||||
@ ${{ formatNumber(order.price) }}
|
||||
</div>
|
||||
<div class="item-detail">
|
||||
{{ order.size }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-right">
|
||||
<span style="font-size: 11px; color: var(--text-secondary);">自动执行</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user