diff --git a/frontend/components/dashboard/ScanTerminalDashboard.tsx b/frontend/components/dashboard/ScanTerminalDashboard.tsx index acb243f2..75898c90 100644 --- a/frontend/components/dashboard/ScanTerminalDashboard.tsx +++ b/frontend/components/dashboard/ScanTerminalDashboard.tsx @@ -331,7 +331,7 @@ function CityGroupedTable({ return (
| @@ -341,10 +341,11 @@ function CityGroupedTable({ {isEn ? "City / Best Signal" : "城市 / 最佳信号"} | {isEn ? "Edge" : "优势"} | +{isEn ? "Model" : "模型"} | Live | DEB | -{isEn ? "Mkt" : "市场"} | -{isEn ? "Liq" : "流动性"} | +{isEn ? "Mkt" : "盘口"} | +{isEn ? "Spr/Liq" : "价差/流动性"} | {pct(best.edge_percent)} | +{pct(best.model_probability ?? best.model_event_probability)} | {temp(best.current_temp || best.current_max_so_far, best.temp_symbol)} | {temp(best.deb_prediction, best.temp_symbol)} | {formatPrice(best.midpoint, best.ask, best.bid)} | @@ -405,6 +407,7 @@ function CityGroupedTable({{pct(row.edge_percent)} | +{pct(row.model_probability ?? row.model_event_probability)} | {temp(row.current_temp || row.current_max_so_far, row.temp_symbol)} | {temp(row.deb_prediction, row.temp_symbol)} | {formatPrice(row.midpoint, row.ask, row.bid)} |
|---|