Skip to main content

StrateQueue Tweet

PyPI version PyPI status Python 3.10+ License: AGPL-3.0 GitHub contributors Downloads GitHub forks GitHub watchers GitHub stars

📖 Documentation | 🚀 Quick Start Guide | 💬 Community

The fastest way from backtest to live trading Stargazers repo roster for @StrateQueue/StrateQueue

⭐️ If StrateQueue saved you time or taught you something, consider starring us on GitHub — it helps more quants discover the project!

📈 StrateQueue 📉

Backtest to live in seconds. StrateQueue lets you deploy any Python trading strategy (backtrader, zipline, vectorbt, backtrader, etc.) to any broker with one command: stratequeue deploy --strategy ./your_script.py. No code changes.

📑 Table of Contents

🎯 Quick-start: From Backtest to Live in One Command

Your existing backtest:

class SMAStrategy(Strategy):
    def init(self):
        self.sma_short = self.I(ta.SMA, self.data.Close, 10)
        self.sma_long = self.I(ta.SMA, self.data.Close, 20)
    
    def next(self):
        if crossover(self.sma_short, self.sma_long):
            self.buy()
        elif crossover(self.sma_long, self.sma_short):
            self.sell()

Deploy to live trading:

pip install stratequeue
stratequeue deploy \
  --strategy examples/strategies/backtestingpy/sma.py \
  --symbol AAPL \
  --timeframe 1m

NOTE: To use CCXT, use the --broker/data-source ccxt.<broker> syntax

Quick Start Demo

🛠️ Prerequisites

  • Python 3.10 or newer (tested up to 3.11)
  • pip and a virtual environment (recommended)
  • (Optional) Broker API credentials if you plan to trade live (e.g. Alpaca, Interactive Brokers)
  • (Optional) A C compiler for building certain dependencies (TA-Lib, IB-API) on Linux/macOS

📥 Installation

Install the core package:

pip install stratequeue

If you need support for a specific engine or want everything in one go:

# Zipline support
pip install "stratequeue[zipline]"
# Backtrader support
pip install "stratequeue[backtrader]"
# Backtesting.py support
pip install "stratequeue[backtesting]"
# VectorBT support
pip install "stratequeue[vectorbt]"
# BT support
pip install "stratequeue[bt]"
# Everything
pip install "stratequeue[all]"

Setup

Setup

Dashboard (Experimental)

stratequeue webui

🔧 Supported Integrations

Integration Status
Backtesting Engines
├─ backtesting.py ✅ Implemented
├─ VectorBT ✅ Implemented
├─ Backtrader ✅ Implemented
├─ BT ✅ Implemented
└─ Zipline-Reloaded ✅ Implemented
Brokers
├─ Alpaca ✅ Implemented
├─ Interactive Brokers ✅ Implemented
├─ CCXT 🟠 Implemented (not tested)
Data Providers
├─ yfinance ✅ Implemented
├─ Polygon.io ✅ Implemented
├─ CoinMarketCap ✅ Implemented
├─ Alpaca ✅ Implemented
└─ Interactive Brokers 🟠 Implemented (not tested)
└─ CCXT 🟠 Implemented (not tested)

✨ Why StrateQueue?

🛡️ Safe by Default — Signals-only mode by default. No accidental trades.

🔌 Engine Agnostic — Works with backtesting.py, VectorBT, Backtrader, Zipline-Reloaded, bt, and more coming soon.

🏦 Multi-Broker — Unified API across IBKR, Alpaca, and 250+ more brokers.

🎯 Portfolio Management — Deploy single strategies or manage hundreds across multiple accounts

🔄 How It Works

How it works

Star History

Star History Chart

⚠️ Disclaimer – No Investment Advice

StrateQueue is an open-source toolkit provided "as-is" for educational and informational purposes only.

  • It does not constitute investment advice, brokerage services, or a recommendation to buy or sell any financial instrument.
  • All trading involves substantial risk; past performance is not indicative of future results. You may lose some or all of your capital.
  • By using StrateQueue you acknowledge that you alone are responsible for your trading decisions and agree that the StrateQueue maintainers and contributors will not be liable for any loss or damage arising from the use of this software.
  • Consult a qualified financial professional before deploying live capital.

© License

StrateQueue is released under the GNU Affero General Public License v3.0.

Download files

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

Source Distribution

stratequeue-0.5.1.tar.gz (2.9 MB view details)

Uploaded Source

Built Distribution

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

stratequeue-0.5.1-py3-none-any.whl (3.0 MB view details)

Uploaded Python 3

File details

Details for the file stratequeue-0.5.1.tar.gz.

File metadata

  • Download URL: stratequeue-0.5.1.tar.gz
  • Upload date:
  • Size: 2.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for stratequeue-0.5.1.tar.gz
Algorithm Hash digest
SHA256 5ffbb2283b66651e4af7f4f89c085e45c0763d40dbcb30bd3a4631a8b9f90793
MD5 73d3194be524eb3e3a0e86d18973345d
BLAKE2b-256 f58675114d67a3814c5956ffaa99c5868da858f6fd3aed257a85c77fa38bb901

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratequeue-0.5.1.tar.gz:

Publisher: publish.yml on StrateQueue/StrateQueue

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

File details

Details for the file stratequeue-0.5.1-py3-none-any.whl.

File metadata

  • Download URL: stratequeue-0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for stratequeue-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7342964862f2d57d81e2bcfd025d66ce007d07d94e9ba6025cc0e33de526321f
MD5 4419c5ea1bacc4ec8cef538b402ae0fa
BLAKE2b-256 913d9de9230c257a17397f29c01a8c652ba69fea61409d7c58ff3f0ab9739f90

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratequeue-0.5.1-py3-none-any.whl:

Publisher: publish.yml on StrateQueue/StrateQueue

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

0.5.1 This release

2 files

0.5.0

2 files

0.4.4

2 files

0.4.3

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.3

2 files

0.3.2.post0

2 files

0.3.1

2 files

0.2.1

2 files

0.2.0

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.0.2

2 files

0.0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page