fix: update ALT gate threshold display - SOL 0.4%, XRP 0.25%

This commit is contained in:
root 2026-03-04 04:08:07 +00:00
parent e25bc519ec
commit 7accb8ed88

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"] }) {