diff --git a/dashboard-next/src/app/page.tsx b/dashboard-next/src/app/page.tsx index d127535..c0f345d 100644 --- a/dashboard-next/src/app/page.tsx +++ b/dashboard-next/src/app/page.tsx @@ -13,7 +13,6 @@ import { PositionsPanel } from "@/components/positions-panel"; import { OBIDetail } from "@/components/obi-detail"; import OrderBookDepthMap from "@/components/orderbook-depth-map"; import L2Terminal from "@/components/L2Terminal"; -import QuantReport from "@/components/QuantReport"; import { useLiveMetrics, usePaperMetrics, fetchHistorical, fetchBacktestDetail, recalcBacktest } from "@/lib/api"; import type { Strategy, BacktestSummary, BacktestFull, Trade, Position, Order } from "@/lib/types"; @@ -278,16 +277,7 @@ export default function Dashboard() {

No trades recorded yet

)} - - {/* Quant Report — QF-Lib inline */} -
- -
- - {/* Live L2 Order Book + Trade Tape (all strategies, live tab only) */} + {/* Live L2 Order Book + Trade Tape (all strategies, live tab only) */} {detailTab === "live" && (
@@ -303,39 +293,43 @@ export default function Dashboard() { return (
-
-
-
- -
-

FTDT Quant Lab

-

- {tab === "live" ? `Live Testnet · Equity $${liveData?.total_equity?.toFixed(2) ?? "—"}` - : tab === "paper" ? `Paper Mainnet · Equity $${paperData?.total_equity?.toLocaleString() ?? "—"}` - : "Historical · Mainnet Real Data"} -

-
+ {/* Header — Hallmark Cobalt */} +
+
+
+ + {tab === "live" ? "Live Testnet" : tab === "paper" ? "Paper Mainnet" : "Historical"} + +
+
+ + + + {liveConn ? "CONNECTED" : "OFFLINE"} · {liveData?.status ?? "···"} + +
- - {liveConn ? "LIVE" : "OFFLINE"} -
-
- setTab(v as Tab)} className="max-w-[1440px] mx-auto px-6"> - - - LiveTestnet - - - Paper$100K Mainnet - - - HistoricalReal Data - - - + {/* Tabs — Hallmark Cobalt */} +
+
+ {(["live", "paper", "historical"] as Tab[]).map((t) => ( + + ))} +
diff --git a/dashboard/static/index.html b/dashboard/static/index.html index 7b2105a..f6f8a4a 100644 --- a/dashboard/static/index.html +++ b/dashboard/static/index.html @@ -1 +1,4 @@ -FTDT Quant Lab

FTDT Quant Lab

Live Testnet · Equity $—

OFFLINE
\ No newline at end of file +FTDT Quant Lab
Live Testnet
OFFLINE · ···
\ No newline at end of file