/** * Radar: 4-stage scoring funnel (0-400 points) * Stage 1: Market Structure (35%, 0-140) -- volume, OI, liquidity depth * Stage 2: Technicals (30%, 0-120) -- RSI, EMA trend, pattern * Stage 3: Funding (20%, 0-80) -- rate extremes, direction bias * Stage 4: BTC Macro (15%, 0-60) -- BTC trend alignment, regime */ import type { EnrichedSnapshot } from "../strategy-types.js"; export interface RadarScore { symbol: string; total: number; structure: number; technicals: number; funding: number; btcMacro: number; } export declare function scoreOpportunity(snapshot: EnrichedSnapshot, btcSnapshot: EnrichedSnapshot | null): RadarScore;