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}} -
- )}
) })}