Metadata-Version: 2.4
Name: tradingcrew
Version: 0.2.1
Summary: TradingCrew - Multi-Agent LLM Financial Trading Framework
Home-page: https://github.com/rminchev1/TradingCrew
Author: TradingCrew Team
Author-email: TradingAgents Team <yijia.xiao@cs.ucla.edu>
License: Apache-2.0
Project-URL: Homepage, https://github.com/rminchev1/TradingCrew
Project-URL: Repository, https://github.com/rminchev1/TradingCrew
Project-URL: Documentation, https://github.com/rminchev1/TradingCrew#readme
Project-URL: Issues, https://github.com/rminchev1/TradingCrew/issues
Keywords: trading,finance,llm,agents,alpaca,stocks,crypto,ai,langchain,langgraph
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Office/Business :: Financial :: Investment
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typing-extensions>=4.0.0
Requires-Dist: langchain>=0.1.0
Requires-Dist: langchain-openai>=0.0.2
Requires-Dist: langchain-experimental>=0.0.40
Requires-Dist: langgraph>=0.0.20
Requires-Dist: numpy>=1.24.0
Requires-Dist: pandas>=2.0.0
Requires-Dist: praw>=7.7.0
Requires-Dist: feedparser>=6.0.0
Requires-Dist: stockstats>=0.5.4
Requires-Dist: finnhub-python>=2.4.0
Requires-Dist: parsel>=1.8.0
Requires-Dist: requests>=2.28.0
Requires-Dist: tqdm>=4.65.0
Requires-Dist: pytz>=2023.3
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: rich>=13.0.0
Requires-Dist: typer>=0.9.0
Requires-Dist: questionary>=2.0.1
Requires-Dist: plotly>=5.18.0
Requires-Dist: dash>=3.0.0
Requires-Dist: dash-bootstrap-components>=2.0.0
Requires-Dist: flask>=3.0.0
Requires-Dist: alpaca-py>=0.8.2
Requires-Dist: yfinance>=0.2.40
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"
Requires-Dist: mypy>=1.0.0; extra == "dev"
Provides-Extra: extras
Requires-Dist: redis>=4.5.0; extra == "extras"
Requires-Dist: chainlit>=0.7.0; extra == "extras"
Requires-Dist: backtrader>=1.9.0; extra == "extras"
Requires-Dist: chromadb>=0.4.0; extra == "extras"
Requires-Dist: gradio>=4.0.0; extra == "extras"
Provides-Extra: all
Requires-Dist: tradingcrew[dev,extras]; extra == "all"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# TradingCrew: Multi-Agent LLM Trading Framework

> **TradingCrew** - A sophisticated multi-agent AI trading framework built on LangGraph, designed for traders who want to leverage AI agents for automated market analysis and trading.
>
> This project extends the original [TradingAgents](https://github.com/TauricResearch/TradingAgents) framework with real-time Alpaca integration, crypto support, options analysis, and a production-ready web interface.
>
> **Disclaimer**: This project is for educational and research purposes only. It is not financial, investment, or trading advice. Trading involves risk. Users should conduct their own due diligence.

<div align="center">

[![CI](https://github.com/rminchev1/TradingCrew/actions/workflows/ci.yml/badge.svg)](https://github.com/rminchev1/TradingCrew/actions/workflows/ci.yml)
[![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
[![License](https://img.shields.io/badge/License-Apache%202.0-green.svg)](LICENSE)

[Features](#features) | [Installation](#installation) | [Quick Start](#quick-start) | [Web UI](#web-interface) | [CLI](#cli-usage) | [API](#python-api) | [Contributing](#contributing)

</div>

---

## Features

### 🤖 Multi-Agent Analysis System (6 Specialized Agents)

| Agent | Role |
|-------|------|
| **Market Analyst** | Technical analysis, price trends, indicators (RSI, MACD, Bollinger Bands) |
| **Options Analyst** | Options chain analysis, put/call ratios, max pain, institutional positioning |
| **Social Sentiment Analyst** | Reddit, Twitter sentiment analysis, social momentum |
| **News Analyst** | Live Finnhub news, Google News, market-moving events |
| **Fundamentals Analyst** | Earnings, balance sheets, SEC filings, insider transactions |
| **Macro Analyst** | Fed data (FRED API), yield curves, economic indicators |

### 📈 Dual Asset Support
- **Stocks**: Full analysis with options data, fundamentals, and technicals
- **Crypto**: BTC/USD, ETH/USD with DeFi Llama data and crypto-specific news
- **Mixed Portfolios**: Analyze `NVDA, ETH/USD, AAPL` in a single session

### 🌐 Production-Ready Web Interface
- **Watchlist Management**: Add symbols, drag-and-drop reorder, one-click analysis
- **Run Queue**: Queue multiple symbols for batch analysis
- **Market Scanner**: Pre-built scanners for gainers, losers, volume spikes, news movers
- **Interactive Charts**: Real-time Alpaca data with technical overlays
- **Live Reports**: Tabbed analyst reports, debate transcripts, tool call logs
- **Portfolio View**: Current positions, recent orders, P&L tracking

### ⚡ Automated Trading
- **Paper & Live Trading**: Test safely before going live
- **Auto-Execution**: Optional automatic trade execution
- **Scheduled Analysis**: Run analysis every N hours during market hours
- **Risk Management**: Position sizing, margin controls, stop-loss support

### 🔧 Developer Experience
- **Python Package**: Install via `pip install .`
- **CLI Interface**: Interactive and batch modes
- **CI/CD**: GitHub Actions for testing and releases
- **Extensible**: Add custom analysts, data sources, or strategies

---

## Installation

### Option 1: Install as Package (Recommended)

```bash
# Clone the repository
git clone https://github.com/rminchev1/TradingCrew.git
cd TradingCrew

# Create virtual environment
python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate

# Install the package
pip install -e .

# Or with development dependencies
pip install -e .[dev]
```

### Option 2: Install from Requirements

```bash
git clone https://github.com/rminchev1/TradingCrew.git
cd TradingCrew

# Create virtual environment
conda create -n tradingcrew python=3.11
conda activate tradingcrew

# Install dependencies
pip install -r requirements.txt
```

### Configure API Keys

1. Copy the sample environment file:
   ```bash
   cp env.sample .env
   ```

2. Edit `.env` with your API keys:

| API | Purpose | Required | Get Key |
|-----|---------|----------|---------|
| **ALPACA_API_KEY** | Trading execution | Yes | [Alpaca Markets](https://app.alpaca.markets/signup) |
| **ALPACA_SECRET_KEY** | Trading execution | Yes | [Alpaca Markets](https://app.alpaca.markets/signup) |
| **OPENAI_API_KEY** | LLM agents | Yes | [OpenAI Platform](https://platform.openai.com/api-keys) |
| **FINNHUB_API_KEY** | Stock news & data | Yes | [Finnhub](https://finnhub.io/register) |
| **FRED_API_KEY** | Macro analysis | Yes | [FRED](https://fred.stlouisfed.org/docs/api/api_key.html) |
| **COINDESK_API_KEY** | Crypto news | For crypto | [CryptoCompare](https://www.cryptocompare.com/cryptopian/api-keys) |

3. Set trading mode:
   ```bash
   ALPACA_USE_PAPER=True   # Paper trading (recommended for testing)
   ALPACA_USE_PAPER=False  # Live trading with real money
   ```

---

## Quick Start

### Web Interface (Recommended)

```bash
# If installed as package
tradingcrew-web

# Or run directly
python run_webui_dash.py --port 7860
```

Open http://localhost:7860 in your browser.

### CLI

```bash
# If installed as package
tradingcrew

# Or run directly
python -m cli.main

# Analyze specific symbols
python -m cli.main NVDA
python -m cli.main "BTC/USD"
python -m cli.main "NVDA,ETH/USD,AAPL"
```

### Python API

```python
from tradingagents import TradingAgentsGraph, DEFAULT_CONFIG

# Initialize
ta = TradingAgentsGraph(debug=True, config=DEFAULT_CONFIG.copy())

# Analyze a stock
_, decision = ta.propagate("NVDA", "2024-05-10")
print(decision)

# Analyze crypto
_, decision = ta.propagate("ETH/USD", "2024-05-10")
print(decision)
```

---

## Web Interface

The Dash-based web UI provides a complete trading workstation:

### Dashboard Features

**Watchlist & Run Queue**
- Add symbols to watchlist for monitoring
- Promote to Run Queue for batch analysis
- Drag-and-drop reordering
- Quick-action buttons: Chart, Analyze, Queue

**Market Scanner**
- Pre-built scans: Top Gainers, Top Losers, Volume Spikes
- News-based movers detection
- One-click add to watchlist or analysis queue

**Analysis Controls**
- Select which analysts to run (Market, Options, Social, News, Fundamentals, Macro)
- Configure LLM models (GPT-4o, GPT-4o-mini, o3-mini)
- Set debate rounds and risk parameters
- Schedule automated recurring analysis

**Reports & Visualization**
- Tabbed reports for each analyst
- Bull vs Bear debate transcripts
- Risk assessment summaries
- Final trading recommendations
- Tool call logs with timing data

**Portfolio Management**
- View current Alpaca positions
- Recent order history
- One-click position liquidation
- Real-time P&L tracking

### Screenshots

<p align="center">
  <img src="assets/config_and_chart.png" style="width: 100%; height: auto;">
</p>

<p align="center">
  <img src="assets/reports.png" style="width: 100%; height: auto;">
</p>

---

## CLI Usage

The CLI supports interactive and batch modes:

```bash
# Interactive mode - select options via prompts
tradingcrew

# Single symbol
tradingcrew NVDA

# Multiple symbols
tradingcrew "NVDA,AAPL,TSLA"

# Crypto
tradingcrew "BTC/USD"

# Mixed assets
tradingcrew "NVDA,ETH/USD,AAPL"
```

---

## Python API

### Basic Usage

```python
from tradingagents import TradingAgentsGraph, DEFAULT_CONFIG

ta = TradingAgentsGraph(debug=True, config=DEFAULT_CONFIG.copy())
_, decision = ta.propagate("NVDA", "2024-05-10")
```

### Custom Configuration

```python
from tradingagents import TradingAgentsGraph, DEFAULT_CONFIG

config = DEFAULT_CONFIG.copy()
config.update({
    "deep_think_llm": "gpt-4o",        # Reasoning model
    "quick_think_llm": "gpt-4o-mini",  # Fast model
    "max_debate_rounds": 3,             # Bull/Bear debate rounds
    "max_risk_discuss_rounds": 2,       # Risk assessment rounds
    "online_tools": True,               # Use live data
    "parallel_analysts": True,          # Run analysts concurrently
})

ta = TradingAgentsGraph(debug=True, config=config)
```

### Batch Analysis

```python
symbols = ["NVDA", "AAPL", "TSLA", "ETH/USD"]
results = {}

for symbol in symbols:
    _, decision = ta.propagate(symbol, "2024-05-10")
    results[symbol] = decision
    print(f"{symbol}: {decision['action']} - {decision['reasoning'][:100]}...")
```

---

## Architecture

```
┌─────────────────────────────────────────────────────────────────┐
│                     ANALYST TEAM (6 Agents)                     │
├─────────────────────────────────────────────────────────────────┤
│  Market    Options    Social    News    Fundamentals    Macro   │
│  Analyst   Analyst    Analyst   Analyst   Analyst      Analyst  │
└──────────────────────────┬──────────────────────────────────────┘
                           │
                           ▼
┌─────────────────────────────────────────────────────────────────┐
│                     RESEARCHER TEAM                              │
├─────────────────────────────────────────────────────────────────┤
│        Bull Researcher  ◄──► Bear Researcher                    │
│              (Structured Debate - N Rounds)                      │
└──────────────────────────┬──────────────────────────────────────┘
                           │
                           ▼
┌─────────────────────────────────────────────────────────────────┐
│                     RISK MANAGEMENT                              │
├─────────────────────────────────────────────────────────────────┤
│    Aggressive ◄──► Neutral ◄──► Conservative                    │
│              (Risk Assessment Debate)                            │
└──────────────────────────┬──────────────────────────────────────┘
                           │
                           ▼
┌─────────────────────────────────────────────────────────────────┐
│                     TRADER AGENT                                 │
├─────────────────────────────────────────────────────────────────┤
│     Final Decision: BUY / HOLD / SELL                           │
│     → Alpaca API Execution (Paper or Live)                      │
└─────────────────────────────────────────────────────────────────┘
```

---

## Project Structure

```
TradingCrew/
├── tradingagents/           # Core trading framework
│   ├── agents/              # AI agents (analysts, researchers, trader)
│   ├── dataflows/           # Data interfaces (Alpaca, Finnhub, FRED, etc.)
│   ├── graph/               # LangGraph workflow orchestration
│   └── scanner/             # Market scanning utilities
├── webui/                   # Dash web interface
│   ├── components/          # UI components
│   ├── callbacks/           # Dash callbacks
│   └── assets/              # CSS, JS assets
├── cli/                     # Command-line interface
├── tests/                   # Unit tests
├── pyproject.toml           # Package configuration
└── requirements.txt         # Dependencies
```

---

## Development

### Running Tests

```bash
# Run all tests
python -m pytest tests/ -v

# Run specific test file
python -m pytest tests/dataflows/test_finnhub_news_online.py -v
```

### Building the Package

```bash
# Install build tools
pip install build

# Build source distribution and wheel
python -m build

# Output in dist/
```

### Creating a Release

```bash
# Tag a version
git tag v0.1.0
git push origin v0.1.0

# GitHub Actions will automatically:
# 1. Run tests
# 2. Build package
# 3. Create GitHub Release with artifacts
```

---

## Contributing

We welcome contributions! Please:

1. Fork the repository
2. Create a feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes (`git commit -m 'Add amazing feature'`)
4. Push to the branch (`git push origin feature/amazing-feature`)
5. Open a Pull Request

---

## Acknowledgments

This project builds upon the original [TradingAgents](https://github.com/TauricResearch/TradingAgents) framework by Tauric Research. We extend our gratitude to the original authors for their pioneering work in multi-agent financial trading systems.

## Citation

```bibtex
@misc{xiao2025tradingagentsmultiagentsllmfinancial,
      title={TradingAgents: Multi-Agents LLM Financial Trading Framework},
      author={Yijia Xiao and Edward Sun and Di Luo and Wei Wang},
      year={2025},
      eprint={2412.20138},
      archivePrefix={arXiv},
      primaryClass={q-fin.TR},
      url={https://arxiv.org/abs/2412.20138},
}
```

---

## License

This project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details.

---

<div align="center">

**[⬆ Back to Top](#tradingcrew-multi-agent-llm-trading-framework)**

</div>
