Skip to content

AQC Trading SDKPython SDK for IBKR execution via AQC

Fast, clean, and strategy-first trading primitives.

What this is

The AQC Trading SDK is a Python client for the AQC execution engine. It’s designed for quant teams who want reliable, strategy-scoped order routing, market data access, and options tooling without dealing directly with the IBKR Web API.

Quickstart

bash
pip install https://api.alpha-techlab.com/download/python-sdk
python
from trading_sdk import TradingClient

client = TradingClient(strategy_id="AQC-P1A2B3C4")
quote = client.get_quote("AAPL")
order = client.buy("AAPL", 10)

Next: head to Getting Started for setup details and Core Concepts for conventions like strategy IDs, conids, and time formats.