Skip to content

AQC Trading SDKPython SDK for IBKR execution via AQC

Fast, clean, and strategy-first trading primitives.

Private Repository on Gemfury

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 --extra-index-url https://<GEMFURY_TOKEN>@pypi.fury.io/alphaquantcapital/ aqc-trading-sdk
python
from aqc_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.