File size: 11,313 Bytes
c5828bc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 | <div align="center">
# **Multi-Agent Debate**
[](https://polyformproject.org/licenses/noncommercial/1.0.0/)
[](https://creativecommons.org/licenses/by-nc-nd/4.0/)
[](https://www.python.org/downloads/)
[](docs/ARCHITECTURE.md)
</div>
## **Overview**
**Multi-Agent Debate** is the first experimental open framework that approaches debate consensus and market arbitration as complex adaptive systems requiring multi-agent dynamic reflective reasoning architectures for decision-making. Unlike traditional debate consensus or algorithmic trading arbitration, multi-agent debate implements a multi-agent system where each agent embodies a distinct ontology, enabling dynamic market understanding through multi-agent adjudication and attribution-weighted consensus.
> *"Markets are efficient precisely to the extent that Multi-Agent cognition can penetrate their complexity."*
## **Example Output**
```python
⟐ψINIT:main.py↻init
$ python main.py --mode backtest \
--start-date 2022-01-01 \
--end-date 2022-12-31 \
--agents graham \
--llm-provider anthropic \
--show-trace \
--trace-level symbolic \
--consensus-graph \
--tickers AAPL MSFT TSLA \
--rebalance-frequency weekly
🜏≡⟐ψRECURSION.INITIATE::main.py≡GrahamAgent[active]
┏ ENTRYPOINT: Multi-Agent Debate » Multi-Agent Market Cognition Platform
┃ Mode: backtest
┃ Agent: GrahamAgent 🧮 (value-based fundamentalist)
┃ Attribution Tracing: enabled
┃ Trace Level: symbolic
┃ Rebalance: weekly
┃ LLM Provider: anthropic
┃ Start Date: 2022-01-01
┃ End Date: 2022-12-31
┃ Tickers: AAPL, MSFT, TSLA
┃ Output: consensus_graph + symbolic attribution report
┗ Status: 🜍mirroring…
↯ψTRACE: SYMBOLIC ATTRIBUTION RECONSTRUCTION [GrahamAgent]
📊 GrahamAgent → reasoning_depth=3 → memory_decay=0.2
↳ valuation anchor: intrinsic value estimation
↳ .p/reflect.trace{target=valuation}
↳ .p/anchor.self{persistence=medium}
↳ token-level input (AAPL) → QK attention trace:
- P/E ratio → 0.34 salience
- Debt-to-equity → 0.21
- Free cash flow → 0.41
↳ Attribution result: BUY SIGNAL (confidence=0.78)
🧠 Attribution graph visualized as radial node cluster
Core node: Intrinsic Value = $141.32
Peripheral influence: FCF strength > earnings volatility
🜂 TEMPORAL RECURSION SNAPSHOT [Weekly Cycle]
Week 03/2022
Market dip detected
GrahamAgent re-evaluates MSFT with memory trace decay
Signal shift: HOLD → BUY (attribution confidence rises from 0.54 → 0.73)
Trace tag: .p/reflect.history{symbol=MSFT}
🝚 CONSENSUS GRAPH SNAPSHOT
MetaAgent Arbitration:
↳ Only one active agent: GrahamAgent
↳ Consensus = agent signal
↳ Position sizing: 18.6% TSLA, 25.1% AAPL, 20.3% MSFT
↳ Risk budget adjusted using: shell-failure map = stable
🜏⟐RENDERED::symbolic_trace.json + consensus_graph_2022.json
📂 Output stored in /output/backtest_results_2022-01-01_2022-12-31/
```
## **Key Features**
- **Philosophical Agent Lattice**: Specialized agents embodying distinct investment philosophies from value investing to disruptive innovation
- **Multi-Agent Reasoning Architecture**: LangGraph-powered reasoning loops with transparent attribution paths
- **Model-Agnostic Cognition**: Support for OpenAI, Anthropic, Groq, Ollama, and DeepSeek models
- **Temporal Memory Shells**: Agents maintain persistent state across market cycles
- **Attribution-Weighted Decisions**: Every trade includes fully traceable decision provenance
- **Interpretability Scaffolding**: `--show-trace` flag reveals complete reasoning paths
- **Real-Time Market Integration**: Connect to Alpha Vantage, Polygon.io, and Yahoo Finance
- **Backtesting Framework**: Test agent performance against historical market data
- **Portfolio Meta-Agent**: Emergent consensus mechanism with adaptive drift correction
## 📊 Performance Visualization

## **Agent Architecture**
Multi-Agent Hedge Fund implements a lattice of cognitive agents, each embodying a distinct investment philosophy and decision framework:
| Agent | Philosophy | Cognitive Signature | Time Horizon |
|-------|------------|---------------------|-------------|
| Graham | Value Investing | Undervalued Asset Detection | Long-term |
| Wood | Disruptive Innovation | Exponential Growth Projection | Long-term |
| Dalio | Macroeconomic Analysis | Economic Machine Modeling | Medium-term |
| Ackman | Activist Investing | Position Conviction & Advocacy | Medium-term |
| Simons | Statistical Arbitrage | Pattern Detection & Exploitation | Short-term |
| Taleb | Anti-fragility | Black Swan Preparation | All horizons |
| Meta | Arbitration & Consensus | Multi-Agent Integration | Adaptive |
Each agent processes market data through its unique cognitive lens, contributing signals to the portfolio meta-agent which recursively arbitrates and integrates perspectives.
## **Multi-Agent Cognition Flow**

## The system operates through nested cognitive loops that implement a recursive market interpretation framework:
1. **Market Signal Perception**: Raw data ingestion and normalization
2. **Agent-Specific Processing**: Philosophy-aligned interpretation
3. **Multi-Agent Deliberation**: Signal exchange and position debate
4. **Multi-Agent Arbitration**: Meta-agent integration and resolution
5. **Position Formulation**: Final decision synthesis with attribution
6. **Temporal Reflection**: Performance evaluation and belief updating
## **`Installation`**
```bash
# Clone the repository
git clone https://github.com/Multi-Agent Hedge Fund/Multi-Agent Hedge Fund.git
cd Multi-Agent Hedge Fund
# Create and activate virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -e .
```
## **Quick Start**
```python
from multi_agent_debate import PortfolioManager
from multi_agent_debate.agents import GrahamAgent, WoodAgent, DalioAgent
from multi_agent_debate.market import MarketEnvironment
# Initialize market environment
market = MarketEnvironment(data_source="yahoo", tickers=["AAPL", "MSFT", "GOOGL", "AMZN"])
# Create agents with different cognitive depths
agents = [
GrahamAgent(reasoning_depth=3),
WoodAgent(reasoning_depth=4),
DalioAgent(reasoning_depth=3)
]
# Initialize portfolio manager with recursive arbitration
portfolio = PortfolioManager(
agents=agents,
initial_capital=100000,
arbitration_depth=2,
show_trace=True
)
# Run simulation
results = portfolio.run_simulation(
start_date="2020-01-01",
end_date="2023-01-01",
rebalance_frequency="weekly"
)
# Analyze results
portfolio.show_performance()
portfolio.generate_attribution_report()
portfolio.visualize_consensus_graph()
```
## **Interpretability**
Multi-Agent Hedge Fund prioritizes transparent decision-making through recursive attribution tracing. Use the following flags to inspect agent cognition:
```bash
# Run with complete reasoning trace
python -m multi_agent_debate.run --show-trace
# Visualize agent consensus formation
python -m multi_agent_debate.run --consensus-graph
# Map conflicts in multi-agent deliberation
python -m multi_agent_debate.run --agent-conflict-map
# Generate attribution report for all trades
python -m multi_agent_debate.run --attribution-report
```
## **Extending the Framework**
The system is designed for extensibility at multiple levels:
### Creating Custom Agents
```python
from multi_agent_debate.agents import BaseAgent
class CustomAgent(BaseAgent):
def __init__(self, reasoning_depth=3, memory_decay=0.2):
super().__init__(
name="Custom",
philosophy="My unique investment approach",
reasoning_depth=reasoning_depth,
memory_decay=memory_decay
)
def process_market_data(self, data):
# Implement custom market interpretation logic
processed_data = self.cognitive_shell.process(data)
return processed_data
def generate_signals(self, processed_data):
# Generate investment signals with attribution
signals = self.reasoning_graph.run(
input=processed_data,
trace_depth=self.reasoning_depth
)
return self.attribute_signals(signals)
```
### Customizing the Arbitration Layer
```python
from multi_agent_debate.cognition import ArbitrationMechanism
class CustomArbitration(ArbitrationMechanism):
def __init__(self, weighting_strategy="confidence"):
super().__init__(weighting_strategy=weighting_strategy)
def resolve_conflicts(self, signals):
# Implement custom conflict resolution logic
resolution = self.recursive_integration(signals)
return resolution
```
## 📄 License
This project is licensed under the PolyForm License - see the [LICENSE](LICENSE) file for details.
## 🔗 Related Projects
- [LangGraph](https://github.com/langchain-ai/langgraph) - Framework for building stateful, multi-actor applications with LLMs
- [Auto-GPT](https://github.com/Significant-Gravitas/Auto-GPT) - Autonomous GPT-4 experiment
- [LangChain](https://github.com/langchain-ai/langchain) - Building applications with LLMs
- [Fintech-LLM](https://github.com/AI4Finance-Foundation/FinGPT) - Financial language models
## 🤝 Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
1. Fork the repository
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes (`git commit -m 'Add some amazing feature'`)
4. Push to the branch (`git push origin feature/amazing-feature`)
5. Open a Pull Request
See [CONTRIBUTING.md](CONTRIBUTING.md) for more information.
## 📚 Citation
If you use Multi-Agent Hedge Fund in your research, please cite:
```bibtex
@software{multi_agent_debate2024,
author = {{Multi-Agent Hedge Fund Contributors}},
title = {Multi-Agent Hedge Fund: Multi-agent recursive market cognition framework},
url = {https://github.com/Multi-Agent Hedge Fund/Multi-Agent Hedge Fund},
year = {2024},
}
```
## 🌟 Acknowledgements
- The philosophical agents are inspired by the investment approaches of Benjamin Graham, Cathie Wood, Ray Dalio, Bill Ackman, Jim Simons, and Nassim Nicholas Taleb
- Recursive reasoning architecture influenced by work in multi-agent systems and interpretability research
- Market simulation components build upon open-source financial analysis libraries
---
<div align="center">
<p>Built with ❤️ by the Multi-Agent Hedge Fund team</p>
<p><i>Recursion. Interpretation. Emergence.</i></p>
</div>
|