Rewrote the dashboard CSS with proper responsive design:
- 480px: 2-column grid, stacked header, compact cards
- 360px: 1-column grid, hidden secondary columns in trade log
- 769px+: full desktop layout with 220px min cards
Added viewport meta for proper mobile rendering, touch-friendly
spacing (minimum 8px tap targets), horizontal scroll for trade
table on small screens, and auto-hiding less critical columns.
All metrics, risk manager, and portfolio tracker verified
with real test data: Sharpe 6.49, Sortino 14.07, max DD 0.25%,
win rate 60% — all modules compute correctly.
Built a tasteful dark-themed dashboard showing real-time strategy
performance. Components:
- dashboard/server.py: FastAPI + WebSocket backend that collects
strategy metrics and streams them to connected clients
- dashboard/static/index.html: Clean single-page dashboard with
equity curve (Chart.js), per-strategy PnL cards with Sharpe,
win rate, drawdown, and a live trade log
- Deployed as a background process on port 9175, proxied by Caddy
at ftdt.io/cv via handle_path
Also added docs/WALLET_SETUP.md with step-by-step instructions
for setting up a Hyperliquid testnet wallet and claiming faucet USDC.
Design: dark theme, JetBrains Mono for numbers, Inter for labels,
status dots with pulse animation. No bloat — one HTML file + vanilla JS.