From 090c75c18252ef9d0736e00be5129ae72f64f1bf Mon Sep 17 00:00:00 2001 From: OpenSquared Date: Tue, 14 Jul 2026 13:52:24 +0200 Subject: [PATCH] feat: new cockpit --- frontend/src/pages/Dashboard.tsx | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/frontend/src/pages/Dashboard.tsx b/frontend/src/pages/Dashboard.tsx index 60760c9..0ffa0d2 100644 --- a/frontend/src/pages/Dashboard.tsx +++ b/frontend/src/pages/Dashboard.tsx @@ -897,9 +897,6 @@ export default function Dashboard() { const rank = h.iv_rank const skewPct = h.skew?.skew_pct const ivCur = h.iv_current_pct - const ivPctl = h.iv_percentile - const flow: string | null = h.options_flow?.flow_bias ?? null - const pcRatio = h.options_flow?.pc_oi_ratio return (
@@ -913,15 +910,6 @@ export default function Dashboard() { )}
- {(ivPctl != null || flow != null || pcRatio != null) && ( -
- {ivPctl != null && Pctl {ivPctl.toFixed(0)}} - {ivPctl != null && pcRatio != null && ' · '} - {pcRatio != null && P/C {pcRatio.toFixed(2)}} - {(ivPctl != null || pcRatio != null) && flow && ' · '} - {flow && {flow}} -
- )}
) })}