Revert to working version
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
'use client'
|
||||
|
||||
import { useState, useEffect } from 'react'
|
||||
import TradingChart from './TradingChart'
|
||||
import { TradingChart } from './TradingChart'
|
||||
|
||||
type TradingTab = 'research' | 'strategies' | 'execution' | 'journal'
|
||||
|
||||
@@ -52,7 +52,7 @@ const defaultTraders: Trader[] = [
|
||||
id: 'gareth_soloway',
|
||||
name: 'Gareth Soloway',
|
||||
status: 'learning',
|
||||
framesAnalyzed: 5970,
|
||||
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'],
|
||||
@@ -171,10 +171,7 @@ export function TradingPanel() {
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
<button
|
||||
className="mt-3 text-sm text-brand-pink hover:underline"
|
||||
onClick={() => setSelectedTrader(trader.id)}
|
||||
>
|
||||
<button className="mt-3 text-sm text-brand-pink hover:underline">
|
||||
View full analysis →
|
||||
</button>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user