Add Gareth Soloway trading strategy to MC

This commit is contained in:
root
2026-02-22 08:01:51 +00:00
parent 0817444dc5
commit 8b295d316e
+17 -6
View File
@@ -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']
}
]