feat: daily volume top20 rank per exchange in market page
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
+179
-1
@@ -24,6 +24,18 @@ from hub_ohlcv_lib import (
|
||||
chart_memory_cap,
|
||||
retention_policy_meta,
|
||||
)
|
||||
from hub_volume_rank_lib import (
|
||||
TOP_N_DEFAULT,
|
||||
cache_needs_refresh,
|
||||
format_volume_quote,
|
||||
get_cached_rank,
|
||||
load_volume_rank_cache,
|
||||
merge_exchange_rank,
|
||||
rank_date_label,
|
||||
save_volume_rank_cache,
|
||||
seconds_until_next_reset,
|
||||
volume_rank_reset_hour,
|
||||
)
|
||||
from hub_symbol_archive_lib import (
|
||||
ARCHIVE_DEFAULT_TIMEFRAME,
|
||||
ARCHIVE_SEED_LOOKBACK_DAYS,
|
||||
@@ -104,6 +116,9 @@ HUB_BUILD = "20260607-hub-archive"
|
||||
_archive_sync_stop: asyncio.Event | None = None
|
||||
_archive_sync_task: asyncio.Task | None = None
|
||||
_last_archive_sync: dict | None = None
|
||||
_volume_rank_stop: asyncio.Event | None = None
|
||||
_volume_rank_task: asyncio.Task | None = None
|
||||
_volume_rank_cache: dict | None = None
|
||||
HUB_AGENT_TIMEOUT = float(os.getenv("HUB_AGENT_TIMEOUT", "8"))
|
||||
HUB_FLASK_TIMEOUT = float(os.getenv("HUB_FLASK_TIMEOUT", "10"))
|
||||
HUB_BOARD_TIMEOUT = float(os.getenv("HUB_BOARD_TIMEOUT", "45"))
|
||||
@@ -321,6 +336,99 @@ async def _run_archive_sync_once() -> dict:
|
||||
return out
|
||||
|
||||
|
||||
def _fetch_instance_volume_rank_sync(ex: dict, *, top_n: int = TOP_N_DEFAULT) -> dict:
|
||||
base = (ex.get("flask_url") or "").rstrip("/")
|
||||
if not base:
|
||||
return {"ok": False, "msg": "未配置 flask_url"}
|
||||
params = {"top": str(int(top_n))}
|
||||
url = f"{base}/api/hub/volume-rank?{urlencode(params)}"
|
||||
try:
|
||||
with httpx.Client(timeout=max(HUB_FLASK_TIMEOUT, 60.0)) as client:
|
||||
r = client.get(url, headers=_hub_headers())
|
||||
if r.status_code >= 400:
|
||||
parsed = _parse_http_json_body(r)
|
||||
parsed.setdefault("ok", False)
|
||||
parsed.setdefault("status", r.status_code)
|
||||
return parsed
|
||||
data = r.json() if r.content else {}
|
||||
return data if isinstance(data, dict) else {"ok": False, "msg": "无效 JSON"}
|
||||
except Exception as e:
|
||||
return {"ok": False, "msg": str(e)}
|
||||
|
||||
|
||||
def _get_volume_rank_cache() -> dict:
|
||||
global _volume_rank_cache
|
||||
if _volume_rank_cache is None:
|
||||
_volume_rank_cache = load_volume_rank_cache()
|
||||
return _volume_rank_cache
|
||||
|
||||
|
||||
def _refresh_volume_ranks(*, force: bool = False) -> dict:
|
||||
global _volume_rank_cache
|
||||
expected = rank_date_label()
|
||||
cache = _get_volume_rank_cache()
|
||||
if not force and not cache_needs_refresh(cache, expected_rank_date=expected):
|
||||
return {
|
||||
"ok": True,
|
||||
"skipped": True,
|
||||
"rank_date": cache.get("rank_date"),
|
||||
"updated_at": cache.get("updated_at"),
|
||||
}
|
||||
targets = enabled_exchanges(load_settings())
|
||||
errors: list[str] = []
|
||||
for ex in targets:
|
||||
ex_key = str(ex.get("key") or "").strip().lower()
|
||||
if not ex_key or not ex.get("enabled"):
|
||||
continue
|
||||
resp = _fetch_instance_volume_rank_sync(ex, top_n=TOP_N_DEFAULT)
|
||||
if resp.get("ok"):
|
||||
cache = merge_exchange_rank(cache, ex_key, resp)
|
||||
else:
|
||||
msg = str(resp.get("msg") or resp.get("error") or "拉取失败")
|
||||
errors.append(f"{ex_key}:{msg}")
|
||||
exchanges = dict(cache.get("exchanges") or {})
|
||||
prev = dict(exchanges.get(ex_key) or {})
|
||||
prev["error"] = msg
|
||||
exchanges[ex_key] = prev
|
||||
cache["exchanges"] = exchanges
|
||||
cache["rank_date"] = expected
|
||||
save_volume_rank_cache(cache)
|
||||
_volume_rank_cache = cache
|
||||
out: dict = {
|
||||
"ok": True,
|
||||
"rank_date": expected,
|
||||
"exchanges": len(targets),
|
||||
"updated_at": cache.get("updated_at"),
|
||||
}
|
||||
if errors:
|
||||
out["errors"] = errors[:8]
|
||||
return out
|
||||
|
||||
|
||||
async def _volume_rank_loop() -> None:
|
||||
global _volume_rank_stop
|
||||
stop = _volume_rank_stop
|
||||
if stop is None:
|
||||
return
|
||||
try:
|
||||
await asyncio.to_thread(_refresh_volume_ranks, force=False)
|
||||
except Exception:
|
||||
pass
|
||||
while not stop.is_set():
|
||||
try:
|
||||
wait_sec = seconds_until_next_reset()
|
||||
await asyncio.wait_for(stop.wait(), timeout=wait_sec)
|
||||
break
|
||||
except asyncio.TimeoutError:
|
||||
pass
|
||||
if stop.is_set():
|
||||
break
|
||||
try:
|
||||
await asyncio.to_thread(_refresh_volume_ranks, force=True)
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
|
||||
async def _archive_sync_loop() -> None:
|
||||
global _archive_sync_stop
|
||||
stop = _archive_sync_stop
|
||||
@@ -340,11 +448,13 @@ async def _archive_sync_loop() -> None:
|
||||
|
||||
@asynccontextmanager
|
||||
async def _hub_lifespan(_app: FastAPI):
|
||||
global _archive_sync_stop, _archive_sync_task
|
||||
global _archive_sync_stop, _archive_sync_task, _volume_rank_stop, _volume_rank_task
|
||||
await board_store.start(_run_board_aggregate)
|
||||
await chart_poll_store.start(_run_chart_poll)
|
||||
_archive_sync_stop = asyncio.Event()
|
||||
_archive_sync_task = asyncio.create_task(_archive_sync_loop(), name="hub-archive-sync")
|
||||
_volume_rank_stop = asyncio.Event()
|
||||
_volume_rank_task = asyncio.create_task(_volume_rank_loop(), name="hub-volume-rank")
|
||||
try:
|
||||
yield
|
||||
finally:
|
||||
@@ -358,6 +468,16 @@ async def _hub_lifespan(_app: FastAPI):
|
||||
pass
|
||||
_archive_sync_task = None
|
||||
_archive_sync_stop = None
|
||||
if _volume_rank_stop:
|
||||
_volume_rank_stop.set()
|
||||
if _volume_rank_task:
|
||||
_volume_rank_task.cancel()
|
||||
try:
|
||||
await _volume_rank_task
|
||||
except asyncio.CancelledError:
|
||||
pass
|
||||
_volume_rank_task = None
|
||||
_volume_rank_stop = None
|
||||
await chart_poll_store.stop()
|
||||
await board_store.stop()
|
||||
|
||||
@@ -645,9 +765,67 @@ def api_chart_meta():
|
||||
"chunk_limits": {tf: chart_chunk_limit(tf) for tf in tfs if tf in CHART_TIMEFRAMES},
|
||||
"memory_caps": {tf: chart_memory_cap(tf) for tf in tfs if tf in CHART_TIMEFRAMES},
|
||||
"exchanges": exchanges,
|
||||
"volume_rank_top_n": TOP_N_DEFAULT,
|
||||
"volume_rank_reset_hour": volume_rank_reset_hour(),
|
||||
}
|
||||
|
||||
|
||||
@app.get("/api/chart/volume-rank")
|
||||
def api_chart_volume_rank(exchange_key: str = "", refresh: str = ""):
|
||||
force = (refresh or "").strip().lower() in ("1", "true", "yes", "on")
|
||||
if force:
|
||||
result = _refresh_volume_ranks(force=True)
|
||||
if not result.get("ok"):
|
||||
raise HTTPException(status_code=502, detail=result.get("msg") or "刷新失败")
|
||||
cache = _get_volume_rank_cache()
|
||||
if cache_needs_refresh(cache):
|
||||
_refresh_volume_ranks(force=False)
|
||||
cache = _get_volume_rank_cache()
|
||||
ex_k = (exchange_key or "").strip().lower()
|
||||
if ex_k:
|
||||
ex = _find_exchange_by_key(ex_k)
|
||||
if not ex:
|
||||
raise HTTPException(status_code=400, detail="交易所不存在")
|
||||
payload = get_cached_rank(cache, ex_k, top_n=TOP_N_DEFAULT)
|
||||
payload["items"] = [
|
||||
{**row, "volume_label": format_volume_quote(row.get("volume_quote"))}
|
||||
for row in payload.get("items") or []
|
||||
]
|
||||
payload["reset_hour"] = volume_rank_reset_hour()
|
||||
err = ((cache.get("exchanges") or {}).get(ex_k) or {}).get("error")
|
||||
if err and not payload.get("items"):
|
||||
payload["ok"] = False
|
||||
payload["msg"] = err
|
||||
return payload
|
||||
exchanges_out = {}
|
||||
for ex in enabled_exchanges(load_settings()):
|
||||
key = str(ex.get("key") or "").strip().lower()
|
||||
if not key:
|
||||
continue
|
||||
row = get_cached_rank(cache, key, top_n=TOP_N_DEFAULT)
|
||||
row["name"] = ex.get("name")
|
||||
row["items"] = [
|
||||
{**item, "volume_label": format_volume_quote(item.get("volume_quote"))}
|
||||
for item in row.get("items") or []
|
||||
]
|
||||
exchanges_out[key] = row
|
||||
return {
|
||||
"ok": True,
|
||||
"rank_date": cache.get("rank_date"),
|
||||
"updated_at": cache.get("updated_at"),
|
||||
"reset_hour": volume_rank_reset_hour(),
|
||||
"exchanges": exchanges_out,
|
||||
}
|
||||
|
||||
|
||||
@app.post("/api/chart/volume-rank/refresh")
|
||||
async def api_chart_volume_rank_refresh():
|
||||
result = await asyncio.to_thread(_refresh_volume_ranks, force=True)
|
||||
if not result.get("ok"):
|
||||
raise HTTPException(status_code=502, detail=result.get("msg") or "刷新失败")
|
||||
return result
|
||||
|
||||
|
||||
@app.get("/api/chart/ohlcv")
|
||||
def api_chart_ohlcv(
|
||||
exchange_key: str = "",
|
||||
|
||||
@@ -2928,6 +2928,117 @@ body.login-page {
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.market-field-symbol .market-symbol-wrap {
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
gap: 6px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.market-field-symbol .market-symbol-wrap > input {
|
||||
flex: 1;
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.market-vol-rank {
|
||||
position: relative;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.market-vol-rank > summary {
|
||||
list-style: none;
|
||||
cursor: pointer;
|
||||
height: 100%;
|
||||
min-height: 34px;
|
||||
padding: 0 10px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
border: 1px solid var(--border-soft);
|
||||
border-radius: 6px;
|
||||
background: var(--inset-surface);
|
||||
color: var(--accent);
|
||||
font-size: 0.78rem;
|
||||
font-weight: 600;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.market-vol-rank > summary::-webkit-details-marker {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.market-vol-rank[open] > summary {
|
||||
border-color: rgba(0, 255, 157, 0.35);
|
||||
background: rgba(0, 255, 157, 0.08);
|
||||
}
|
||||
|
||||
.market-vol-rank-panel {
|
||||
position: absolute;
|
||||
top: calc(100% + 4px);
|
||||
right: 0;
|
||||
z-index: 30;
|
||||
width: min(320px, 72vw);
|
||||
max-height: 360px;
|
||||
overflow: auto;
|
||||
border: 1px solid var(--border-soft);
|
||||
border-radius: 8px;
|
||||
background: var(--panel-bg, #1a1f2e);
|
||||
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
|
||||
padding: 8px 0 6px;
|
||||
}
|
||||
|
||||
.market-vol-rank-meta {
|
||||
padding: 0 10px 6px;
|
||||
font-size: 0.68rem;
|
||||
color: var(--muted);
|
||||
line-height: 1.35;
|
||||
}
|
||||
|
||||
.market-vol-rank-list {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.market-vol-rank-item {
|
||||
width: 100%;
|
||||
display: grid;
|
||||
grid-template-columns: 28px 1fr auto;
|
||||
gap: 6px;
|
||||
align-items: center;
|
||||
padding: 6px 10px;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
color: var(--text);
|
||||
font-size: 0.8rem;
|
||||
font-family: var(--font);
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.market-vol-rank-item:hover {
|
||||
background: var(--inset-surface);
|
||||
}
|
||||
|
||||
.market-vol-rank-item.is-active {
|
||||
background: rgba(0, 255, 157, 0.1);
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.market-vol-rank-no {
|
||||
color: var(--muted);
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.market-vol-rank-sym {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.market-vol-rank-vol {
|
||||
color: var(--muted);
|
||||
font-size: 0.72rem;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.market-draw-menu {
|
||||
position: fixed;
|
||||
z-index: 1200;
|
||||
|
||||
@@ -89,6 +89,9 @@
|
||||
|
||||
const elExchange = document.getElementById("market-exchange");
|
||||
const elSymbol = document.getElementById("market-symbol");
|
||||
const elVolRankMeta = document.getElementById("market-vol-rank-meta");
|
||||
const elVolRankList = document.getElementById("market-vol-rank-list");
|
||||
const elVolRankDetails = document.getElementById("market-vol-rank");
|
||||
const elTf = document.getElementById("market-timeframe");
|
||||
const elRefresh = document.getElementById("market-refresh");
|
||||
const elStatus = document.getElementById("market-status");
|
||||
@@ -2613,6 +2616,68 @@
|
||||
void postChartUnwatch();
|
||||
}
|
||||
|
||||
function renderVolumeRank(data) {
|
||||
if (!elVolRankMeta || !elVolRankList) return;
|
||||
elVolRankList.innerHTML = "";
|
||||
if (!data || !data.ok || !data.items || !data.items.length) {
|
||||
elVolRankMeta.textContent =
|
||||
(data && data.msg) || "暂无排名数据(请稍后或检查实例 /api/hub/volume-rank)";
|
||||
return;
|
||||
}
|
||||
const resetHour = data.reset_hour != null ? data.reset_hour : 8;
|
||||
const rankDate = data.rank_date || "—";
|
||||
const updated = data.updated_at || "—";
|
||||
elVolRankMeta.textContent =
|
||||
"昨日成交 Top20 · 交易日 " + rankDate + " · 每早 " + resetHour + ":00 更新 · " + updated;
|
||||
const curSym = (elSymbol && elSymbol.value.trim().toUpperCase()) || "";
|
||||
data.items.forEach(function (row) {
|
||||
const li = document.createElement("li");
|
||||
const btn = document.createElement("button");
|
||||
btn.type = "button";
|
||||
btn.className = "market-vol-rank-item";
|
||||
if (row.symbol && row.symbol.toUpperCase() === curSym) {
|
||||
btn.classList.add("is-active");
|
||||
}
|
||||
btn.dataset.symbol = row.symbol || "";
|
||||
btn.innerHTML =
|
||||
'<span class="market-vol-rank-no">' +
|
||||
(row.rank || "") +
|
||||
'</span><span class="market-vol-rank-sym">' +
|
||||
(row.symbol || "") +
|
||||
'</span><span class="market-vol-rank-vol">' +
|
||||
(row.volume_label || "") +
|
||||
"</span>";
|
||||
btn.addEventListener("click", function () {
|
||||
if (!elSymbol || !row.symbol) return;
|
||||
elSymbol.value = row.symbol;
|
||||
if (elVolRankDetails) elVolRankDetails.open = false;
|
||||
loadChart(false);
|
||||
});
|
||||
li.appendChild(btn);
|
||||
elVolRankList.appendChild(li);
|
||||
});
|
||||
}
|
||||
|
||||
async function loadVolumeRank() {
|
||||
const exKey = (elExchange && elExchange.value) || "";
|
||||
if (!exKey || !elVolRankMeta) return;
|
||||
elVolRankMeta.textContent = "加载排名…";
|
||||
if (elVolRankList) elVolRankList.innerHTML = "";
|
||||
try {
|
||||
const r = await fetch(
|
||||
"/api/chart/volume-rank?exchange_key=" + encodeURIComponent(exKey),
|
||||
{ credentials: "same-origin" }
|
||||
);
|
||||
const data = await r.json();
|
||||
if (!r.ok) {
|
||||
throw new Error((data && data.detail) || (data && data.msg) || "加载失败");
|
||||
}
|
||||
renderVolumeRank(data);
|
||||
} catch (e) {
|
||||
renderVolumeRank({ ok: false, msg: String(e.message || e) });
|
||||
}
|
||||
}
|
||||
|
||||
async function loadMeta() {
|
||||
const r = await fetch("/api/chart/meta", { credentials: "same-origin" });
|
||||
chartMeta = await r.json();
|
||||
@@ -2628,6 +2693,7 @@
|
||||
readQuery();
|
||||
applyDefaults();
|
||||
updateExchangeDisplay();
|
||||
void loadVolumeRank();
|
||||
}
|
||||
|
||||
async function loadChart(force, options) {
|
||||
@@ -2767,6 +2833,7 @@
|
||||
updateExchangeDisplay();
|
||||
syncFsToolbarFromMain();
|
||||
lastViewKey = "";
|
||||
void loadVolumeRank();
|
||||
loadChart(false);
|
||||
});
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=Orbitron:wght@500;600;700&display=swap" rel="stylesheet" media="print" onload="this.media='all'" />
|
||||
<noscript><link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=Orbitron:wght@500;600;700&display=swap" rel="stylesheet" /></noscript>
|
||||
<link rel="stylesheet" href="/assets/app.css?v=20260608-market-draw-v6" />
|
||||
<link rel="stylesheet" href="/assets/app.css?v=20260608-market-vol-rank" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="app-bg" aria-hidden="true"></div>
|
||||
@@ -80,9 +80,18 @@
|
||||
<span>交易所</span>
|
||||
<select id="market-exchange"></select>
|
||||
</label>
|
||||
<label class="market-field">
|
||||
<label class="market-field market-field-symbol">
|
||||
<span>币种</span>
|
||||
<input id="market-symbol" type="text" value="BTC/USDT" placeholder="BTC/USDT" autocomplete="off" />
|
||||
<div class="market-symbol-wrap">
|
||||
<input id="market-symbol" type="text" value="BTC/USDT" placeholder="BTC/USDT" autocomplete="off" />
|
||||
<details id="market-vol-rank" class="market-vol-rank">
|
||||
<summary title="昨日成交额 Top20(每早8点更新)">Top20</summary>
|
||||
<div class="market-vol-rank-panel">
|
||||
<div id="market-vol-rank-meta" class="market-vol-rank-meta">加载中…</div>
|
||||
<ol id="market-vol-rank-list" class="market-vol-rank-list"></ol>
|
||||
</div>
|
||||
</details>
|
||||
</div>
|
||||
</label>
|
||||
<label class="market-field">
|
||||
<span>周期</span>
|
||||
@@ -385,8 +394,8 @@
|
||||
|
||||
<div id="toast"></div>
|
||||
<script src="https://unpkg.com/lightweight-charts@4.2.0/dist/lightweight-charts.standalone.production.js"></script>
|
||||
<script src="/assets/chart_draw.js?v=20260608-market-draw-v6"></script>
|
||||
<script src="/assets/chart.js?v=20260608-market-draw-v6"></script>
|
||||
<script src="/assets/chart_draw.js?v=20260608-market-vol-rank"></script>
|
||||
<script src="/assets/chart.js?v=20260608-market-vol-rank"></script>
|
||||
<script src="/assets/archive.js?v=20260607-hub-archive-v6"></script>
|
||||
<script src="/assets/ai_review_render.js?v=2"></script>
|
||||
<script src="/assets/app.js?v=20260607-hub-archive-v1"></script>
|
||||
|
||||
Reference in New Issue
Block a user