Skip to main content

📈 SimTradeLab

English | 中文 | Deutsch

Lightweight Quantitative Backtesting Framework — Local PTrade API Simulation

Python License License: Commercial Version PyPI PyPI - Downloads

Local compatibility for a tested subset of PTrade backtest APIs. Portability depends on the APIs and broker behavior a strategy uses; review the support matrix. See also: ptradeAPI


🎯 Why SimTradeLab?

SimTradeLab PTrade
Speed 100–160x faster Baseline
Startup Sub-second (data persists in memory) Minutes
API Coverage See the tested support matrix Full platform
Strategy Porting Depends on the tested API subset Native platform
Environment Local, free, open-source Cloud, licensed

Core capabilities:

  • Tested API classifications — current full, partial, pending, and unsupported behavior is tracked in the support matrix
  • 100–160x faster than PTrade platform
  • 🚀 In-memory data persistence — singleton pattern, sub-second startup after first load
  • 💾 Multi-level caching — LRU caches for MA/VWAP/adjustment factors/history, >95% hit rate
  • 🧠 Smart data loading — AST analysis of strategy code, loads only required data
  • 🔧 Lifecycle control — 7 lifecycle phases, strict simulation of PTrade's API restrictions
  • 📊 Full stats reporting — returns, risk metrics (Sharpe/Sortino/Calmar), trade details, FIFO dividend tax, CSV export
  • 🔌 Multi-market — Built-in CN (A-shares) and US market profiles with automatic trading rule adaptation
  • 🌐 i18n — Backtest output in Chinese, English, or German

🚀 Need More? Try SimTradeDesk

SimTradeDesk is a professional desktop application built on SimTradeLab — no coding required.

Feature SimTradeLab (this repo) SimTradeDesk
Target users Developers & quant engineers All traders
Interface Python API Desktop GUI
Strategy editing Code editor Built-in editor with syntax highlighting
Visualization PNG charts Interactive real-time charts
Data management Manual setup One-click download & update
Parameter tuning Write code Visual optimizer

👉 Get SimTradeDesk →


📦 Quick Start

pip install simtradelab

# Optional: technical indicators (requires system ta-lib)
pip install simtradelab[indicators]

# Optional: parameter optimizer
pip install simtradelab[optimizer]

Verify the installed command-line entry point:

simtradelab --help
simtradelab --version

Data: Use SimTradeData to download China A-share and US stock historical data.

Strategy environment: Read the strategy runtime boundaries before using files, external datasets, or network libraries in strategy code.

Run a backtest:

from simtradelab.backtest.runner import BacktestRunner
from simtradelab.backtest.config import BacktestConfig

config = BacktestConfig(
    # --- Required ---
    strategy_name='my_strategy',       # Strategy folder name under strategies/
    start_date='2024-01-01',           # Backtest start date
    end_date='2024-12-31',             # Backtest end date

    # --- Capital & Market ---
    initial_capital=100000.0,          # Starting capital (must be > 0)
    market='CN',                       # Market: 'CN' (A-shares) | 'US'
    broker_profile='auto',             # Broker API profile: 'auto' | 'guosheng' | 'dongguan' | 'shanxi'
    t_plus_1=None,                     # T+1 override: None=market default (CN=True, US=False)
    benchmark_code='',                 # Benchmark code, empty=market default

    # --- Frequency ---
    frequency='1d',                    # Bar frequency: '1d' (daily) | '1m' (minute)

    # --- Paths ---
    data_path='~/.simtradelab/data',   # Market data directory
    strategies_path='./strategies',    # Strategies root directory

    # --- Performance ---
    enable_multiprocessing=True,       # Enable parallel data loading
    num_workers=None,                  # Worker count (None=auto, must be >= 1)
    use_data_server=True,              # Use in-memory data server (singleton)

    # --- Output ---
    enable_charts=True,                # Generate PNG chart
    enable_logging=True,               # Write log file
    enable_export=False,               # Export trade details to CSV

    # --- i18n ---
    locale='auto',                     # Log language: 'zh' | 'en' | 'de' (auto: CN market→zh, else system locale)
    optimization_mode=False,           # Optimization mode: skip validation/logging (managed by optimizer)

    # --- Entry file ---
    strategy_file='backtest.py',       # Entry file: 'backtest.py' | 'live.py'
)
runner = BacktestRunner()
report = runner.run(config=config)

📚 API Overview

See the tested PTrade backtest API support matrix for the current classifications and behavioral evidence.

Category APIs
Trading order, order_target, order_value, order_target_value, cancel_order, get_positions, get_trades
Data get_price, get_history, get_fundamentals, get_stock_info
Sector get_index_stocks, get_industry_stocks, get_stock_blocks
Indicators get_MACD, get_KDJ, get_RSI, get_CCI
Config set_benchmark, set_commission, set_slippage, set_universe, set_parameters
Lifecycle initialize, before_trading_start, handle_data, after_trading_end

📄 License

Dual license model:


🤝 Contributing

  • 🐛 Report issues
  • 💻 Implement missing API features
  • 📚 Improve documentation

See CONTRIBUTING.md for CLA details.


⚖️ Disclaimer

SimTradeLab is a community-developed, open-source backtesting framework inspired by PTrade's event-driven design. It does not contain PTrade's source code, trademarks, or any protected content. This project is not affiliated with or endorsed by PTrade. Users are responsible for compliance with local regulations and platform terms.


⭐ Star this project if you find it useful!

🐛 Report Issue | 💡 Feature Request | 🖥️ SimTradeDesk


💖 Sponsor

If this project helps you, consider sponsoring!

WeChat Pay Alipay

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

simtradelab-2.13.2.tar.gz (131.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

simtradelab-2.13.2-py3-none-any.whl (157.0 kB view details)

Uploaded Python 3

File details

Details for the file simtradelab-2.13.2.tar.gz.

File metadata

  • Download URL: simtradelab-2.13.2.tar.gz
  • Upload date:
  • Size: 131.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simtradelab-2.13.2.tar.gz
Algorithm Hash digest
SHA256 18f6c149053a48a8ef07898860b9ca6c3f0157c13c77176b8fdaf5e2f7f0a2b9
MD5 f7dd8d7ce1afb3408e630a0282d9a3c0
BLAKE2b-256 eb980587af4cee21e36825bc451e1fabb680ae4f861fd18af2f90562eb1921f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for simtradelab-2.13.2.tar.gz:

Publisher: publish.yml on kay-ou/SimTradeLab

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simtradelab-2.13.2-py3-none-any.whl.

File metadata

  • Download URL: simtradelab-2.13.2-py3-none-any.whl
  • Upload date:
  • Size: 157.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simtradelab-2.13.2-py3-none-any.whl
Algorithm Hash digest
SHA256 56e4ec238b5bbd2e5c5f349f6d1f3d10d8b912338143d693a3e78cc13eea73dd
MD5 fc690ba9590678cc91ebf67b31b0ed6e
BLAKE2b-256 cebece3574eee15f3bf68851376ff592a1ac9afaa3391a0085bb7646491a7f76

See more details on using hashes here.

Provenance

The following attestation bundles were made for simtradelab-2.13.2-py3-none-any.whl:

Publisher: publish.yml on kay-ou/SimTradeLab

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

2.13.2 This release

2 files

2.13.1

2 files

2.13.0

2 files

2.12.3

2 files

2.12.2

2 files

2.12.1

2 files

2.12.0

2 files

2.11.0

2 files

2.10.3

2 files

2.10.2

2 files

2.10.1

2 files

2.10.0

2 files

2.9.0

2 files

2.8.1

2 files

2.8.0

2 files

2.7.0

2 files

2.6.1

2 files

2.6.0

2 files

2.5.0

2 files

2.4.2

2 files

2.4.1

2 files

2.4.0

2 files

2.3.0

2 files

2.2.1

2 files

2.2.0

2 files

2.1.0

2 files

2.0.0

2 files

1.2.4

2 files

1.2.3

2 files

1.2.2

2 files

1.2.1

2 files

1.1.1

2 files

1.1.0

2 files

1.0.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page