- Add hyperliquid API with account/positions/orders endpoints - Add hyperliquid.html monitoring page - Add position close and order cancel actions - Auto-refresh every 30 seconds - Display account value, leverage, drawdown, positions, and orders
717 lines
25 KiB
HTML
717 lines
25 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<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;
|
||
padding: 0;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
body {
|
||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||
background: #0d1117;
|
||
color: #c9d1d9;
|
||
min-height: 100vh;
|
||
}
|
||
|
||
.container {
|
||
max-width: 1400px;
|
||
margin: 0 auto;
|
||
padding: 20px;
|
||
}
|
||
|
||
.header {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
margin-bottom: 24px;
|
||
padding-bottom: 16px;
|
||
border-bottom: 1px solid #30363d;
|
||
}
|
||
|
||
.title {
|
||
font-size: 24px;
|
||
font-weight: 600;
|
||
color: #58a6ff;
|
||
}
|
||
|
||
.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;
|
||
}
|
||
|
||
.refresh-btn {
|
||
padding: 8px 16px;
|
||
background: #21262d;
|
||
border: 1px solid #30363d;
|
||
color: #c9d1d9;
|
||
border-radius: 6px;
|
||
cursor: pointer;
|
||
transition: all 0.2s;
|
||
}
|
||
|
||
.refresh-btn:hover {
|
||
background: #30363d;
|
||
}
|
||
|
||
.refresh-btn.loading {
|
||
opacity: 0.6;
|
||
cursor: wait;
|
||
}
|
||
|
||
/* 账户信息卡片 */
|
||
.stats-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||
gap: 16px;
|
||
margin-bottom: 24px;
|
||
}
|
||
|
||
.stat-card {
|
||
background: #161b22;
|
||
border: 1px solid #30363d;
|
||
border-radius: 8px;
|
||
padding: 20px;
|
||
}
|
||
|
||
.stat-label {
|
||
font-size: 12px;
|
||
color: #8b949e;
|
||
margin-bottom: 8px;
|
||
}
|
||
|
||
.stat-value {
|
||
font-size: 24px;
|
||
font-weight: 600;
|
||
color: #58a6ff;
|
||
}
|
||
|
||
.stat-value.positive {
|
||
color: #3fb950;
|
||
}
|
||
|
||
.stat-value.negative {
|
||
color: #f85149;
|
||
}
|
||
|
||
.stat-value.warning {
|
||
color: #d29922;
|
||
}
|
||
|
||
.stat-sub {
|
||
font-size: 11px;
|
||
color: #8b949e;
|
||
margin-top: 4px;
|
||
}
|
||
|
||
/* 内容区域 */
|
||
.content-grid {
|
||
display: grid;
|
||
grid-template-columns: 1fr 1fr;
|
||
gap: 24px;
|
||
margin-bottom: 24px;
|
||
}
|
||
|
||
.panel {
|
||
background: #161b22;
|
||
border: 1px solid #30363d;
|
||
border-radius: 8px;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.panel-header {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
padding: 16px 20px;
|
||
border-bottom: 1px solid #30363d;
|
||
background: #0d1117;
|
||
}
|
||
|
||
.panel-title {
|
||
font-size: 16px;
|
||
font-weight: 600;
|
||
color: #c9d1d9;
|
||
}
|
||
|
||
.panel-count {
|
||
font-size: 12px;
|
||
color: #8b949e;
|
||
}
|
||
|
||
.panel-body {
|
||
padding: 0;
|
||
}
|
||
|
||
/* 列表样式 */
|
||
.list-item {
|
||
padding: 16px 20px;
|
||
border-bottom: 1px solid #21262d;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
}
|
||
|
||
.list-item:last-child {
|
||
border-bottom: none;
|
||
}
|
||
|
||
.item-left {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 16px;
|
||
}
|
||
|
||
.symbol {
|
||
font-size: 16px;
|
||
font-weight: 600;
|
||
color: #c9d1d9;
|
||
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;
|
||
}
|
||
|
||
.item-detail span {
|
||
color: #c9d1d9;
|
||
}
|
||
|
||
.item-right {
|
||
text-align: right;
|
||
}
|
||
|
||
.pnl {
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
}
|
||
|
||
.pnl.positive {
|
||
color: #3fb950;
|
||
}
|
||
|
||
.pnl.negative {
|
||
color: #f85149;
|
||
}
|
||
|
||
/* 空状态 */
|
||
.empty-state {
|
||
padding: 60px 20px;
|
||
text-align: center;
|
||
color: #6e7681;
|
||
}
|
||
|
||
.empty-icon {
|
||
font-size: 48px;
|
||
margin-bottom: 16px;
|
||
opacity: 0.5;
|
||
}
|
||
|
||
/* 操作按钮 */
|
||
.action-btn {
|
||
padding: 6px 12px;
|
||
background: #21262d;
|
||
border: 1px solid #30363d;
|
||
color: #c9d1d9;
|
||
border-radius: 6px;
|
||
font-size: 12px;
|
||
cursor: pointer;
|
||
transition: all 0.2s;
|
||
}
|
||
|
||
.action-btn:hover {
|
||
background: #30363d;
|
||
}
|
||
|
||
.action-btn.danger {
|
||
border-color: #f85149;
|
||
color: #f85149;
|
||
}
|
||
|
||
.action-btn.danger:hover {
|
||
background: #f85149;
|
||
color: white;
|
||
}
|
||
|
||
/* 响应式 */
|
||
@media (max-width: 768px) {
|
||
.stats-grid {
|
||
grid-template-columns: repeat(2, 1fr);
|
||
gap: 12px;
|
||
}
|
||
|
||
.content-grid {
|
||
grid-template-columns: 1fr;
|
||
gap: 16px;
|
||
}
|
||
|
||
.stat-value {
|
||
font-size: 20px;
|
||
}
|
||
|
||
.symbol {
|
||
min-width: 80px;
|
||
font-size: 14px;
|
||
}
|
||
|
||
.item-details {
|
||
flex-direction: column;
|
||
gap: 4px;
|
||
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>
|
||
</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 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>
|
||
</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 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>
|
||
|
||
<!-- 止盈止损单 -->
|
||
<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>
|
||
</div>
|
||
</div>
|
||
<div class="item-right">
|
||
<span style="font-size: 11px; color: #8b949e;">自动执行</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<script>
|
||
const { createApp } = Vue;
|
||
|
||
createApp({
|
||
data() {
|
||
return {
|
||
loading: false,
|
||
enabled: false,
|
||
account: {
|
||
account_value: 0,
|
||
available_balance: 0,
|
||
total_margin_used: 0,
|
||
total_position_value: 0,
|
||
current_leverage: 0,
|
||
max_leverage: 10,
|
||
drawdown: 0,
|
||
circuit_breaker_threshold: 10
|
||
},
|
||
positions: [],
|
||
orders: {
|
||
entry_orders: 0,
|
||
tp_sl_orders: 0,
|
||
all: []
|
||
}
|
||
}
|
||
},
|
||
computed: {
|
||
leverageUtilization() {
|
||
if (!this.account.max_leverage) return 0;
|
||
return (this.account.current_leverage / this.account.max_leverage) * 100;
|
||
},
|
||
entryOrdersList() {
|
||
return this.orders.all.filter(o => !o.is_reduce_only);
|
||
},
|
||
tpSlOrdersList() {
|
||
return this.orders.all.filter(o => o.is_reduce_only);
|
||
}
|
||
},
|
||
methods: {
|
||
async refreshData() {
|
||
this.loading = true;
|
||
try {
|
||
// 并发获取所有数据
|
||
const [accountRes, positionsRes, ordersRes] = await Promise.all([
|
||
fetch('/api/hyperliquid/account').then(r => r.json()),
|
||
fetch('/api/hyperliquid/positions').then(r => r.json()),
|
||
fetch('/api/hyperliquid/orders').then(r => r.json())
|
||
]);
|
||
|
||
// 处理账户数据
|
||
if (accountRes.success && accountRes.data) {
|
||
this.enabled = accountRes.enabled;
|
||
this.account = accountRes.data;
|
||
} else {
|
||
this.enabled = accountRes.enabled;
|
||
}
|
||
|
||
// 处理持仓数据
|
||
if (positionsRes.success && positionsRes.positions) {
|
||
this.positions = positionsRes.positions;
|
||
}
|
||
|
||
// 处理订单数据
|
||
if (ordersRes.success) {
|
||
this.orders = {
|
||
entry_orders: ordersRes.counts.entry_orders,
|
||
tp_sl_orders: ordersRes.counts.tp_sl_orders,
|
||
all: [...ordersRes.entry_orders, ...ordersRes.tp_sl_orders]
|
||
};
|
||
}
|
||
} catch (error) {
|
||
console.error('刷新数据失败:', error);
|
||
} finally {
|
||
this.loading = false;
|
||
}
|
||
},
|
||
formatNumber(num) {
|
||
if (num === null || num === undefined) return '0.00';
|
||
return parseFloat(num).toLocaleString('en-US', {
|
||
minimumFractionDigits: 2,
|
||
maximumFractionDigits: 2
|
||
});
|
||
},
|
||
getLeverageClass(leverage) {
|
||
if (leverage >= 8) return 'warning';
|
||
if (leverage >= 9) return 'negative';
|
||
return '';
|
||
},
|
||
getDrawdownClass(drawdown) {
|
||
if (drawdown >= 8) return 'warning';
|
||
if (drawdown >= 9) return 'negative';
|
||
if (drawdown < 0) return 'positive';
|
||
return '';
|
||
},
|
||
getPnLClass(pnl) {
|
||
if (pnl > 0) return 'positive';
|
||
if (pnl < 0) return 'negative';
|
||
return '';
|
||
},
|
||
async closePosition(symbol) {
|
||
if (!confirm(`确定要平掉 ${symbol} 的持仓吗?`)) return;
|
||
|
||
try {
|
||
const response = await fetch(`/api/hyperliquid/positions/close?symbol=${symbol}`, {
|
||
method: 'POST'
|
||
});
|
||
const result = await response.json();
|
||
|
||
if (result.success) {
|
||
alert('平仓成功');
|
||
await this.refreshData();
|
||
} else {
|
||
alert('平仓失败: ' + result.message);
|
||
}
|
||
} catch (error) {
|
||
alert('平仓失败: ' + error.message);
|
||
}
|
||
},
|
||
async cancelOrder(symbol) {
|
||
if (!confirm(`确定要取消 ${symbol} 的所有挂单吗?`)) return;
|
||
|
||
try {
|
||
const response = await fetch(`/api/hyperliquid/orders/cancel?symbol=${symbol}`, {
|
||
method: 'POST'
|
||
});
|
||
const result = await response.json();
|
||
|
||
if (result.success) {
|
||
alert('取消成功');
|
||
await this.refreshData();
|
||
} else {
|
||
alert('取消失败: ' + result.message);
|
||
}
|
||
} catch (error) {
|
||
alert('取消失败: ' + error.message);
|
||
}
|
||
}
|
||
},
|
||
async mounted() {
|
||
await this.refreshData();
|
||
// 自动刷新(每30秒)
|
||
setInterval(() => {
|
||
this.refreshData();
|
||
}, 30000);
|
||
}
|
||
}).mount('#app');
|
||
</script>
|
||
</body>
|
||
</html>
|