diff --git a/frontend/app/trades/page.tsx b/frontend/app/trades/page.tsx index 2c58e6c..6d451e1 100644 --- a/frontend/app/trades/page.tsx +++ b/frontend/app/trades/page.tsx @@ -206,26 +206,42 @@ function FlowAnalysis({ symbol }: { symbol: Symbol }) { ) : (
{/* 摘要卡片 */} -
-
-

主动买量

-

{totalBuy.toFixed(1)}

-
-
-

主动卖量

-

{totalSell.toFixed(1)}

-
-
-

Delta

-

= 0 ? "text-emerald-600" : "text-red-500"}`}> - {totalDelta >= 0 ? "+" : ""}{totalDelta.toFixed(1)} +

+
+

+ 统计时间窗口: + + {interval === "1m" ? "过去1小时" : interval === "5m" ? "过去4小时" : interval === "15m" ? "过去12小时" : "过去48小时"} + + (每{interval}聚合一根,每30秒刷新)

+

单位:{symbol === "BTC" ? "BTC" : "ETH"}

-
-

买方占比

-

= 50 ? "text-emerald-600" : "text-red-500"}`}> - {buyPct.toFixed(1)}% -

+
+
+

主动买量

+

{totalBuy.toFixed(1)}

+

买方主动吃卖单

+
+
+

主动卖量

+

{totalSell.toFixed(1)}

+

卖方主动砸买单

+
+
+

Delta(买-卖)

+

= 0 ? "text-emerald-600" : "text-red-500"}`}> + {totalDelta >= 0 ? "+" : ""}{totalDelta.toFixed(1)} +

+

{totalDelta >= 0 ? "多头占优 ↑" : "空头占优 ↓"}

+
+
+

买方占比

+

= 50 ? "text-emerald-600" : "text-red-500"}`}> + {buyPct.toFixed(1)}% +

+

{buyPct >= 55 ? "强势买盘" : buyPct >= 45 ? "买卖均衡" : "强势卖盘"}

+