arXiv Discord WeChat X Follow
Community
Deutsch | Español | français | 日本語 | 한국어 | Português | Русский | 中文
--- # TradingAgents: Multi-Agents LLM Financial Trading Framework > 🎉 **TradingAgents** officially released! We have received numerous inquiries about the work, and we would like to express our thanks for the enthusiasm in our community. > > So we decided to fully open-source the framework. Looking forward to building impactful projects with you!
TradingAgents Star History
🚀 [TradingAgents](#tradingagents-framework) | ⚡ [Installation & CLI](#installation-and-cli) | 🎬 [Demo](https://www.youtube.com/watch?v=90gr5lwjIho) | 📦 [Package Usage](#tradingagents-package) | 🤝 [Contributing](#contributing) | 📄 [Citation](#citation)
## TradingAgents Framework TradingAgents is a multi-agent trading framework that mirrors the dynamics of real-world trading firms. By deploying specialized LLM-powered agents: from fundamental analysts, sentiment experts, and technical analysts, to trader, risk management team, the platform collaboratively evaluates market conditions and informs trading decisions. Moreover, these agents engage in dynamic discussions to pinpoint the optimal strategy.

> TradingAgents framework is designed for research purposes. Trading performance may vary based on many factors, including the chosen backbone language models, model temperature, trading periods, the quality of data, and other non-deterministic factors. [It is not intended as financial, investment, or trading advice.](https://tauric.ai/disclaimer/) Our framework decomposes complex trading tasks into specialized roles. This ensures the system achieves a robust, scalable approach to market analysis and decision-making. ### Analyst Team - Fundamentals Analyst: Evaluates company financials and performance metrics, identifying intrinsic values and potential red flags. - Sentiment Analyst: Analyzes social media and public sentiment using sentiment scoring algorithms to gauge short-term market mood. - News Analyst: Monitors global news and macroeconomic indicators, interpreting the impact of events on market conditions. - Technical Analyst: Utilizes technical indicators (like MACD and RSI) to detect trading patterns and forecast price movements.

### Researcher Team - Comprises both bullish and bearish researchers who critically assess the insights provided by the Analyst Team. Through structured debates, they balance potential gains against inherent risks.

### Trader Agent - Composes reports from the analysts and researchers to make informed trading decisions. It determines the timing and magnitude of trades based on comprehensive market insights.

### Risk Management and Portfolio Manager - Continuously evaluates portfolio risk by assessing market volatility, liquidity, and other risk factors. The risk management team evaluates and adjusts trading strategies, providing assessment reports to the Portfolio Manager for final decision. - The Portfolio Manager approves/rejects the transaction proposal. If approved, the order will be sent to the simulated exchange and executed.

## Installation and CLI ### Installation Clone TradingAgents: ```bash git clone https://github.com/TauricResearch/TradingAgents.git cd TradingAgents ``` Create a virtual environment in any of your favorite environment managers: ```bash conda create -n tradingagents python=3.13 conda activate tradingagents ``` Install dependencies: ```bash pip install -r requirements.txt ``` ### Required APIs You will also need the FinnHub API for financial data. All of our code is implemented with the free tier. ```bash export FINNHUB_API_KEY=$YOUR_FINNHUB_API_KEY ``` You will need the OpenAI API for all the agents. ```bash export OPENAI_API_KEY=$YOUR_OPENAI_API_KEY ``` ### CLI Usage You can run the CLI analysis with the following command (recommended, default): ```bash python -m cli.main ``` Or, you can explicitly specify the analyze command (optional, for clarity): ```bash python -m cli.main analyze ``` You will see a screen where you can select your desired tickers, date, LLMs, research depth, etc.

An interface will appear showing results as they load, letting you track the agent's progress as it runs.

#### Optional Report Output To save the final consolidated report to files after analysis, use the `--save-reports` flag (works with both default and explicit usage): ```bash # Save reports in both Markdown and JSON formats python -m cli.main --save-reports --format both # Save reports only in Markdown format python -m cli.main --save-reports --format markdown # Save reports only in JSON format python -m cli.main --save-reports --format json ``` Or, with the explicit command: ```bash python -m cli.main analyze --save-reports --format both ``` Reports are saved to: ``` results///reports/ ├── final_report.md # Consolidated Markdown report ├── final_report.json # Consolidated JSON report ├── market_report.md # Individual analyst reports ├── sentiment_report.md ├── news_report.md ├── fundamentals_report.md ├── investment_plan.md ├── trader_investment_plan.md └── final_trade_decision.md ``` #### Generate Reports from Existing Data If you want to generate the final consolidated report from existing analysis data without rerunning the analysis: ```bash # Generate Markdown report (default) python -m cli.main save-report GOOG 2025-07-05 # Generate both Markdown and JSON reports python -m cli.main save-report GOOG 2025-07-05 --format both # Generate only JSON report python -m cli.main save-report GOOG 2025-07-05 --format json ``` The final report includes: - **Analysis Summary**: Ticker, date, agent status, and completion statistics - **Agent Status Summary**: Status of all agents organized by teams - **Complete Analysis**: All analyst reports, research decisions, trading plans, and final portfolio decisions ## TradingAgents Package ### Implementation Details We built TradingAgents with LangGraph to ensure flexibility and modularity. We utilize `o1-preview` and `gpt-4o` as our deep thinking and fast thinking LLMs for our experiments. However, for testing purposes, we recommend you use `o4-mini` and `gpt-4.1-mini` to save on costs as our framework makes **lots of** API calls. ### Python Usage To use TradingAgents inside your code, you can import the `tradingagents` module and initialize a `TradingAgentsGraph()` object. The `.propagate()` function will return a decision. You can run `main.py`, here's also a quick example: ```python from tradingagents.graph.trading_graph import TradingAgentsGraph from tradingagents.default_config import DEFAULT_CONFIG ta = TradingAgentsGraph(debug=True, config=DEFAULT_CONFIG.copy()) # forward propagate final_state, decision = ta.propagate("NVDA", "2024-05-10") print(decision) ``` You can also adjust the default configuration to set your own choice of LLMs, debate rounds, etc. ```python from tradingagents.graph.trading_graph import TradingAgentsGraph from tradingagents.default_config import DEFAULT_CONFIG # Create a custom config config = DEFAULT_CONFIG.copy() config["deep_think_llm"] = "gpt-4.1-nano" # Use a different model config["quick_think_llm"] = "gpt-4.1-nano" # Use a different model config["max_debate_rounds"] = 1 # Increase debate rounds config["online_tools"] = True # Use online tools or cached data # Initialize with custom config ta = TradingAgentsGraph(debug=True, config=config) # forward propagate final_state, decision = ta.propagate("NVDA", "2024-05-10") print(decision) ``` #### Accessing Analysis Results The `propagate()` method returns both the final state and the decision. You can access individual reports from the final state: ```python final_state, decision = ta.propagate("NVDA", "2024-05-10") # Access individual analyst reports market_report = final_state["market_report"] sentiment_report = final_state["sentiment_report"] news_report = final_state["news_report"] fundamentals_report = final_state["fundamentals_report"] # Access research team decisions investment_plan = final_state["investment_plan"] trader_plan = final_state["trader_investment_plan"] # Access final decision final_decision = final_state["final_trade_decision"] print(f"Decision: {decision}") print(f"Market Analysis: {market_report[:200]}...") ``` #### Saving Reports Programmatically You can also save the analysis results to files programmatically: ```python import json from pathlib import Path # Save individual reports results_dir = Path("results/NVDA/2024-05-10/reports") results_dir.mkdir(parents=True, exist_ok=True) with open(results_dir / "market_report.md", "w") as f: f.write(final_state["market_report"]) # Save complete state as JSON with open(results_dir / "complete_analysis.json", "w") as f: json.dump(final_state, f, indent=2) ``` > For `online_tools`, we recommend enabling them for experimentation, as they provide access to real-time data. The agents' offline tools rely on cached data from our **Tauric TradingDB**, a curated dataset we use for backtesting. We're currently in the process of refining this dataset, and we plan to release it soon alongside our upcoming projects. Stay tuned! You can view the full list of configurations in `tradingagents/default_config.py`. ## Contributing We welcome contributions from the community! Whether it's fixing a bug, improving documentation, or suggesting a new feature, your input helps make this project better. If you are interested in this line of research, please consider joining our open-source financial AI research community [Tauric Research](https://tauric.ai/). ## Citation Please reference our work if you find *TradingAgents* provides you with some help :) ``` @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}, } ```