File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -98,6 +98,49 @@ v6_research ⭐ (0.621) [+37.4% total]
9898
9999---
100100
101+ ## Production Harness Architecture (v6_research)
102+
103+ ``` mermaid
104+ graph TD
105+ A["📊 Market Data<br/>5Y+ History"] -->|normalize| B["🔧 Feature Engine<br/>RSI, MACD, Bollinger"]
106+ B -->|compute| C["📈 Regime Detection<br/>VIX %, Momentum, Trend"]
107+
108+ C -->|context| D["🧠 Tool Orchestrator<br/>Claude Reasoning Engine"]
109+
110+ E["🌐 Web Search<br/>Tavily API"] -->|sentiment| D
111+ F["📚 Research Context<br/>Academic Papers"] -->|citations| D
112+
113+ D -->|ensemble| G["🤝 Multi-Agent Voting<br/>Tool + Grid + Random"]
114+
115+ G -->|proposals| H["🎯 Backtest Engine<br/>Walk-Forward Validation"]
116+
117+ H -->|metrics| I["✓ Quality Checks<br/>Sharpe, Drawdown, Win Rate"]
118+
119+ I -->|best| J["💾 Memory Store<br/>SQLite + Falsifiable Claims"]
120+
121+ J -->|next run| C
122+
123+ style A fill:#e1f5ff
124+ style B fill:#f3e5f5
125+ style C fill:#e8f5e9
126+ style D fill:#fff9c4
127+ style E fill:#fce4ec
128+ style F fill:#f1f8e9
129+ style G fill:#e0f2f1
130+ style H fill:#ede7f6
131+ style I fill:#c8e6c9
132+ style J fill:#b3e5fc
133+ ```
134+
135+ ** Production Features:**
136+ - ✅ ** Tool Orchestration** — Claude reasons over market context, web search, and research
137+ - ✅ ** Multi-Agent Ensemble** — Tool-based, grid search, and random proposals voted together
138+ - ✅ ** Walk-Forward Validation** — Train/validation/test splits prevent overfitting
139+ - ✅ ** Memory Persistence** — Learns which strategies work in which market regimes
140+ - ✅ ** Falsifiable Claims** — Tracks prediction accuracy (86% validated)
141+
142+ ---
143+
101144## How It Works
102145
103146### The ReAct Loop
You can’t perform that action at this time.
0 commit comments