
TradingAgents is an open-source framework that models an entire trading firm with specialized LLM agents, from analysts to a bull-versus-bear debate to a portfolio manager, and it is explicitly a research tool, not investment advice.
TradingAgents is an open-source framework that models an entire trading firm with specialized LLM agents, from analysts to a bull-versus-bear debate to a portfolio manager, and it is explicitly a research tool, not investment advice.
TradingAgents is an open-source multi-agent LLM framework from Tauric Research. Instead of asking one AI to analyze a stock, it simulates a miniature trading firm where every role is an AI agent. There are four analysts covering fundamentals, sentiment, news, and technical indicators. Two researchers, one bullish and one bearish, debate the evidence. A trader agent proposes a specific trade. A risk team evaluates volatility and liquidity. Finally, a portfolio manager approves or rejects the simulated transaction.
The framework supports cloud providers like OpenAI, Claude, and Gemini, and can also run fully local through Ollama. Recent releases add persistent decision logs and LangGraph checkpoint resume, so a workflow interrupted mid-run can pick up where it left off.
You clone the repo, install the package, and run tradingagents in the terminal. It asks which stock to analyze, on what date, with which model, and at what research depth. The four analysts produce separate reports. The bullish and bearish researchers argue from opposite sides. The trader agent turns the debate into a concrete proposal. The risk team checks volatility and liquidity. The portfolio manager makes the final call.
Recent versions persist decision logs as a journal that later sessions can learn from, and LangGraph checkpoints let you resume from a saved node if a run is interrupted. Docker support is available for containerized runs.
The repo states clearly that this is a research tool, not investment advice. Running the same ticker on the same date twice can produce different results depending on the model, temperature, data, and timing. Do not use the output as a signal to trade real money. The framework is valuable as a multi-agent design case study, but its outputs are probabilistic and non-deterministic.
This is for developers and researchers interested in multi-agent architecture, LangGraph, and financial workflow simulation, not for anyone looking for an automated trading signal.
TradingAgents is worth studying because it demonstrates how specialized agents can coordinate, debate, and decide like a real organization, not because it promises profit. Source: https://github.com/TauricResearch/TradingAgents
AI Agents & Coding ToolsCodex CLI was built to run OpenAI models. opencodex is a lightweight local proxy that lets you route it to Claude, Gemini, Grok, DeepSeek, Ollama, or any of 40-plus providers without waiting for upstream support.
AI Agents & Coding ToolsAn AI agent can write code, manage projects, and summarize documents, but ask it to read a Twitter thread, search Reddit, or pull a YouTube transcript, and it usually hits a wall of API requirements, access blocks, and scattered configuration. Agent Reach wants to fix exactly th…
AI Agents & Coding ToolsYou are coding with AI agents already, but are you still throwing vague prompts at them and hoping for the best? AI Spec Driven is a working framework that separates the thinking phase from the coding phase, and it can save you from a lot of rework.