{/* Header */}
{/* Filter Tabs */}
{/* Loading State */}
{list.length === 0 && (
)}
{/* Ticker List */}
{/* Footer note */}
{list.length > 0 && (
);
}
💰 Smart Money
Binance Futures · WebSocket Stream
{status === "live" && (
)}
{statusText[status]}
{[["ALL","⚡","#ffd740"],["BUY","📈","#00c853"],["SELL","📉","#ff5252"]].map(([f,icon,color])=>(
))}
🟢 {Object.values(tickers).filter(t=>t.signal==="B").length}
🔴 {Object.values(tickers).filter(t=>t.signal==="S").length}
Binance WebSocket এ সংযোগ হচ্ছে...
প্রথমবার লোড হতে ৩-৫ সেকেন্ড লাগতে পারে
{list.map(t => (
setSelected(t.symbol === selected ? null : t.symbol)}
style={{
background: selected===t.symbol ? "rgba(255,255,255,0.06)" : "rgba(255,255,255,0.025)",
border:`1px solid ${selected===t.symbol ? "rgba(255,255,255,0.15)" : "rgba(255,255,255,0.055)"}`,
borderRadius:14, padding:"15px 16px",
cursor:"pointer", transition:"all 0.2s",
position:"relative", overflow:"hidden"
}}
>
{/* Top accent line */}
= 0} />
{/* Expanded Detail */}
{selected === t.symbol && (
))}
{t.symbol.replace("USDT","").slice(0,3)}
{t.symbol.replace("USDT","")}
/USDT
Dominant Flow
${fmtPrice(t.price)}
{t.signal}
{fmtVol(t.vol)} USDT
= 0 ? "#00c853" : "#ff5252",
fontSize:12, fontWeight:700
}}>
{t.pct >= 0 ? "+" : ""}{t.pct.toFixed(2)}%
{[
{ label:"Buy Pressure", value:`${t.buyPct}%`, color:"#00c853" },
{ label:"24h High", value:`$${fmtPrice(t.high)}`, color:"#ffd740" },
{ label:"24h Low", value:`$${fmtPrice(t.low)}`, color:"#ff9800" },
].map(item => (
))}
)}
{item.label}
{item.value}
⚡ WebSocket stream — ডাটা real-time আসছে • যেকোনো card ক্লিক করলে বিস্তারিত দেখাবে
)}
No comments:
Post a Comment