From 8b295d316e666b66ed22698807b6a7a5e39b3927 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 22 Feb 2026 08:01:51 +0000 Subject: [PATCH] Add Gareth Soloway trading strategy to MC --- components/mission-control/TradingPanel.tsx | 23 +++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/components/mission-control/TradingPanel.tsx b/components/mission-control/TradingPanel.tsx index 4a5ddca..1cf58b3 100644 --- a/components/mission-control/TradingPanel.tsx +++ b/components/mission-control/TradingPanel.tsx @@ -41,12 +41,23 @@ const defaultTraders: Trader[] = [ id: 'dopetrades', name: 'DopeTrades', status: 'learning', - framesAnalyzed: 0, - patterns: [], - entryRules: [], - exitRules: [], - indicators: [], - riskParams: [] + framesAnalyzed: 922, + patterns: ['Accumulation/Distribution', 'Trend Legs', 'Support/Resistance', 'Pop Pattern'], + entryRules: ['Identify trend on higher timeframe', 'Find demand/supply zones', 'Wait for retest', '2.5:1 min risk:reward'], + exitRules: ['Stop below demand (long)', 'Target recent highs', 'Scale 50% at 1:1'], + indicators: ['Price Action Only', 'Horizontal S/R Lines'], + riskParams: ['2.5:1 minimum', 'No revenge trading', 'Paper trading first'] + }, + { + id: 'gareth_soloway', + name: 'Gareth Soloway', + status: 'learning', + framesAnalyzed: 768, + patterns: ['Institutional Analysis', 'Yield Curve Signals', 'Cycle Top/Bottom', 'Epic Resistance Rejections'], + entryRules: ['Track institutional activity', 'Wait for yield curve signals', 'Key level breaks with volume', 'Weekly analysis first'], + exitRules: ['Stop below support (long)', 'Target structure highs/lows', '2:1 minimum'], + indicators: ['VWAP', 'MACD', 'Volume', '10-Year Yield', 'Support/Resistance'], + riskParams: ['No-hype sizing', 'Never average down', 'Respect stops', 'Preservation > profits'] } ]