feat: Implement copytrading analytics and update WebUI
- Add v4 Tape-based CopytradingEstimator (Clustering, MAE, Tape Fills) - Add CopytradingBacktestHarness (Walk-Forward testing, Shrinkage, LCB ranking) - Add EF Core Migrations for FollowerFillPrice and Scoring fields - Update WebUI: Fix Trader Detail tab layout blowout - Update WebUI: Redesign Trader Detail menubar - Update WebUI: Display separate Quality and Copyability metric cards - Update WebUI: Add 'Highly Copyable' filter to Trader List
This commit is contained in:
@@ -437,6 +437,19 @@ body {
|
||||
|
||||
.detail-grid { display: grid; grid-template-columns: 300px 1fr; gap: 24px; align-items: start; }
|
||||
.detail-sidebar { padding: 24px; }
|
||||
.detail-main { min-width: 0; }
|
||||
.trader-menubar { display: flex; justify-content: space-between; align-items: center; background: var(--bg-surface); padding: 16px 24px; border-radius: 8px; border: 1px solid var(--border); margin-bottom: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
|
||||
.trader-menubar-left { display: flex; align-items: center; gap: 16px; }
|
||||
.trader-menubar-right { display: flex; gap: 12px; }
|
||||
.menubar-divider { width: 1px; height: 24px; background: var(--border); }
|
||||
.btn-outline { background: var(--bg-input); color: var(--text); border: 1px solid var(--border); border-radius: 6px; cursor: pointer; font-weight: 500; transition: all 0.2s; }
|
||||
.btn-outline:hover { background: var(--border); }
|
||||
.btn-primary { background: var(--primary); color: #000; border: none; border-radius: 6px; cursor: pointer; font-weight: bold; transition: all 0.2s; }
|
||||
.btn-primary:hover { filter: brightness(1.1); }
|
||||
.tabs-nav { display: flex; gap: 12px; margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 8px; flex-wrap: wrap; align-items: center; }
|
||||
.btn-tab { white-space: nowrap; padding: 8px 16px; border-radius: 6px; font-size: 14px; transition: background 0.2s; }
|
||||
.btn-tab:hover { background: var(--bg-input); }
|
||||
.btn-tab.active { background: var(--bg-input); color: var(--primary) !important; border-bottom: 2px solid var(--primary) !important; }
|
||||
.stat-group { margin-bottom: 16px; }
|
||||
.stat-label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.5px; margin-bottom: 4px; }
|
||||
.stat-value { font-size: 15px; font-weight: 600; color: var(--text-primary); }
|
||||
|
||||
Reference in New Issue
Block a user