Strategy-aware routing
Every request can be tagged with your strategy ID for live/paper separation.
Fast, clean, and strategy-first trading primitives.
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.
pip install https://api.alpha-techlab.com/download/python-sdkfrom 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.