fix: update ALT gate thresholds display in signals-v53fast page

This commit is contained in:
root 2026-03-04 04:20:23 +00:00
parent 9a2d7cf187
commit 9eeb9a2434

View File

@ -98,8 +98,8 @@ function LayerScore({ label, score, max, colorClass }: { label: string; score: n
const ALT_GATE_THRESHOLDS: Record<string, { vol: string; obi: string; spd: string; whale: string }> = {
ETH: { vol: "0.3%", obi: "0.35", spd: "0.5%", whale: "$50k" },
XRP: { vol: "0.4%", obi: "0.40", spd: "0.6%", whale: "$30k" },
SOL: { vol: "0.6%", obi: "0.45", spd: "0.8%", whale: "$20k" },
XRP: { vol: "0.25%", obi: "0.40", spd: "0.6%", whale: "$30k" },
SOL: { vol: "0.4%", obi: "0.45", spd: "0.8%", whale: "$20k" },
};
function ALTGateCard({ symbol, factors }: { symbol: Symbol; factors: LatestIndicator["factors"] }) {