Skip to main content
EvoTraders system demo
Visit the EvoTraders website EvoTraders is an open-source financial trading agent framework that builds a trading system capable of continuous learning and evolution in real markets through multi-agent collaboration and memory systems.
Before trading with real funds, please conduct thorough testing and risk assessment. Past performance does not guarantee future returns. Investment involves risks — please make decisions with caution.

Core Features

Multi-Agent Collaborative Trading A team of 6 members — including 4 specialized analyst roles (fundamentals, technical, sentiment, valuation), a portfolio manager, and a risk management agent — collaborating to make decisions like a real trading team. Continuous Learning and Evolution Based on the ReMe memory framework, agents reflect and summarize after each trade, preserving experience across rounds and forming unique investment methodologies. Through this design, agents gradually develop their own trading styles and decision preferences rather than producing one-time random inferences. Real-Time Market Trading Supports real-time market data integration with both backtesting mode and live trading mode, allowing agents to learn and make decisions amid real market fluctuations. Visualized Trading Information Observe agents’ analysis processes, communication records, and decision evolution in real-time, with complete tracking of return curves and analyst performance.
EvoTraders performance chart
EvoTraders trading dashboard

Quick Start

Installation

Edit the .env file and fill in your API keys. The following variables are required:

Running

Backtest Mode:
If you don’t have market data API keys and just want to try the backtest demo, download the offline dataset:
The archive includes basic stock price data so you can run the backtest demo out of the box. Live Trading:
CLI Help:
Launch the Visualization Interface:
Visit http://localhost:5173/ to open the trading room. Select a date and click Run or Replay to observe the decision-making process.

System Architecture

EvoTraders system architecture diagram

Agent Design

Analyst Team Decision Layer
  • Portfolio Manager — Integrates analysis signals from all analysts, executes communication strategies, and combines analyst/team historical performance with recent investment memories and long-term experience to make final decisions.
  • Risk Management — Monitors real-time price and volatility, enforces position limits, and issues multi-layer risk warnings.

Decision Process

Each trading day progresses through five stages:
1

Analysis

Each agent independently analyzes the market using their respective tools and historical experience.
2

Communication

Agents exchange views through private chats, broadcasts, and group meetings.
3

Decision

The portfolio manager makes a comprehensive judgment and issues final trades.
4

Evaluation

  • Performance Charts — Track portfolio return curves against benchmark strategies (equal-weighted, market-cap weighted, momentum).
  • Analyst Rankings — View win rates across bull and bear markets to identify top contributors.
  • Statistics — Detailed position and trading history for in-depth analysis.
5

Review

Agents reflect on decisions and summarize experiences based on actual returns, storing insights in the ReMe memory framework for continuous improvement.

Module Support

Custom Configuration

Custom Analyst Roles

Step 1. Register the role in ./backend/agents/prompts/analyst/personas.yaml:
Step 2. Add the role definition in ./backend/config/constants.py:
Step 3. (Optional) Register the role in the frontend configuration at ./frontend/src/config/constants.js:

Custom Models

Configure the model used by each agent in your .env file: