"use client"; import { motion } from "framer-motion"; import Panel from "./ui/Panel"; function RiskGauge({ label, level, color, }: { label: string; level: number; color: string; }) { return (
{label}
); } export default function DecisionPanel() { return (
{/* Verdict */}
Final Verdict
BUY
Confidence: 78%
{/* Position Size */}
Position Size
12.5%
of portfolio allocation
Risk-adjusted by conservative analyst. Reduced from trader's initial 18%.
{/* Entry Target */}
Entry Target
$885 – $895
current: $892.45
Scale in on pullbacks to 50 SMA support zone at $842.
{/* Stop / Target */}
Stop / Target
$820 / $980
R:R ratio 1 : 2.4
3-month horizon. Re-evaluate on earnings date.
); }