Overview
Agentic Trading Lab is a research and educational environment for studying trading systems powered by large language models. It is built alongside a survey of 130+ agentic trading papers and is designed to make that research accessible: customize agents, evaluate performance, and observe behavior under realistic market constraints.
Live app: agentic-trading-lab.vercel.app · Community: Discord
Goals
The platform bridges alpha-seeking research and deployable trading workflows. Beyond asking whether an agent can generate profitable signals, the lab surfaces the full pipeline—data handling, agent decisions, backtesting, paper trading, execution constraints, risk, and governance.
See also Operating Modes, Key Features, Getting Started, and Architecture. For the multi-agent framework, see Orchestration Framework.
Repository layout
AgenticTrading/
├── backend/ FastAPI app, SQLite, paper trading, LLM validator
├── frontend/ Dashboard (served at http://localhost:8000 when local)
├── scripts/ CLI backtests (e.g. backtest_hourly_agent.py)
├── config/ Default run IDs and date ranges
├── data/ SQLite backtest results (backtest.db)
├── credentials/ Local only — not in git
├── docs/ This documentation
└── orchestration/ FinAgent multi-agent framework (separate subsystem)