Professional algorithmic trading backtesting framework using Backtrader
Project description
AI-Trader
A professional, config-driven backtesting framework for algorithmic trading, built on Backtrader. Seamlessly test, optimize, and integrate trading strategies with Large Language Models (LLMs) across stocks, crypto, and forex markets.
Key Features
- Config-Driven Workflows: Define and manage backtests with version-controllable YAML files for reproducible results.
- Seamless LLM Integration: Built-in MCP (Model Context Protocol) server allows AI assistants like Claude to run backtests, fetch data, and analyze strategies.
- Multi-Market Support: Test strategies on US stocks, Taiwan stocks, cryptocurrencies, and forex.
- Extensive Strategy Library: Comes with over 20 built-in strategies, from classic indicators to advanced adaptive models.
- Powerful CLI: A rich command-line interface to run backtests, fetch market data, and list strategies.
- Developer Friendly: Easily create and test custom strategies with simple helpers and a clear structure.
Quick Start
1. Installation
git clone https://github.com/whchien/ai-trader.git
cd ai-trader
pip install -e .
(Poetry users can run poetry install)
2. Run a Backtest via CLI (Recommended)
Run a predefined backtest using a configuration file:
# Run a backtest from a config file
ai-trader run config/backtest/classic/sma_example.yaml
Or, run a quick backtest on a specific data file:
# Quick backtest without a config file
ai-trader quick CrossSMAStrategy data/us_stock/tsm.csv --cash 100000
3. Fetch Market Data
Download historical data for any supported market:
# US Stock
ai-trader fetch AAPL --market us_stock --start-date 2020-01-01
# Cryptocurrency
ai-trader fetch BTC-USD --market crypto --start-date 2020-01-01
Core Workflows
1. Configuration-Based Backtesting
The most robust way to run backtests is with a YAML config file.
my_backtest.yaml:
broker:
cash: 1000000
commission: 0.001425
data:
file: "data/us_stock/TSM.csv"
start_date: "2020-01-01"
end_date: "2023-12-31"
strategy:
class: "CrossSMAStrategy"
params:
fast: 10
slow: 30
sizer:
type: "percent"
params:
percents: 95
Run it:
ai-trader run my_backtest.yaml
See config/backtest/ for more examples.
2. Python-Based Backtesting
For more granular control or integration into other Python scripts.
Simple approach:
from ai_trader import run_backtest
from ai_trader.backtesting.strategies.classic.sma import CrossSMAStrategy
# Run backtest with example data
results = run_backtest(
strategy=CrossSMAStrategy,
data_source=None, # Uses built-in example data
cash=1000000,
strategy_params={"fast": 10, "slow": 30}
)
Step-by-step control:
See scripts/examples/02_step_by_step.py for a detailed example.
3. LLM Integration (MCP Server)
Run ai-trader as a server to let AI assistants interact with your backtesting engine.
Start the Server:
python -m ai_trader.mcp
Once running, you can configure an agent like Claude Desktop to connect to it. This enables natural language commands like:
- "Run a backtest of the CrossSMAStrategy on TSM data from 2020-2022."
- "List all available trading strategies."
- "Fetch Apple stock data from 2021 to 2024."
Creating Custom Strategies
Create a new file in ai_trader/backtesting/strategies/classic/ and inherit from BaseStrategy.
# ai_trader/backtesting/strategies/classic/my_strategy.py
import backtrader as bt
from ai_trader.backtesting.strategies.base import BaseStrategy
class MyCustomStrategy(BaseStrategy):
params = dict(period=20)
def __init__(self):
self.sma = bt.indicators.SMA(self.data.close, period=self.p.period)
def next(self):
if not self.position and self.data.close[0] > self.sma[0]:
self.buy()
elif self.position and self.data.close[0] < self.sma[0]:
self.close()
The new strategy is automatically available to the CLI and run_backtest function.
Documentation & Resources
- Strategy Examples: Details on built-in strategies.
- Example Scripts: 5 complete working examples for different use cases.
- Config Templates: YAML configuration templates.
- Migration Guide: For upgrading from v0.1.x.
Contributing
Contributions are welcome! Feel free to report bugs, suggest features, or submit pull requests.
Show Your Support
If you find this project helpful, please give it a star !
License
This project is licensed under the MIT License. See the LICENSE file for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ai_trader-0.3.0.tar.gz.
File metadata
- Download URL: ai_trader-0.3.0.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a699c47e8aae8f2cac7909ac5075777aca6f83d4f4b9bff49e3d4a5279d22a7
|
|
| MD5 |
bf76a4d371ad5c2ae662c93f4a8eaca6
|
|
| BLAKE2b-256 |
eb2bb47baeab5511e518ad894c86431f30c8bd77ad4648867a6dfe1511b38f88
|
File details
Details for the file ai_trader-0.3.0-py3-none-any.whl.
File metadata
- Download URL: ai_trader-0.3.0-py3-none-any.whl
- Upload date:
- Size: 88.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eeaa05c0e12755158bba4e335e45ca65190db6d690a19fe5057ac07b42ad2c72
|
|
| MD5 |
29e9816b7edee5feb6705488678c70fb
|
|
| BLAKE2b-256 |
a5a96a3ca093c8ebc018ac100e9df33b673a42af1bebb0c4079696a85a81a853
|