一键导入
tws-api-adapter
Polyglot (C++/Python) Adapter for IBKR TWS API. Requires SDK Injection.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Polyglot (C++/Python) Adapter for IBKR TWS API. Requires SDK Injection.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Reference for OS and Kernel parameter optimization on the QuanuX Edge.
Reference for using the QuanuX Control CLI (quanuxctl).
Official Figma Developer MCP integration for QuanuX. Allows agents to inspect designs, extract variables, and generate code from Figma files.
The authoritative "School of Architecture" for building QuanuX Extensions (Sidecars). Enforces the QXP protocol, Go runtime preference, and privacy-first security model.
Instructions for operating and configuring the SignalR Bridge for TopstepX.
Guidelines for adding functions to the AST translation map for QuanuX-Annex duckdb transpiler
| name | tws_api_adapter |
| description | Polyglot (C++/Python) Adapter for IBKR TWS API. Requires SDK Injection. |
This extension wraps the Native C++ TWS API, providing access to Market Data, Algorithms, and Account updates that are not available via FIX.
This extension follows the "Bring Your Own SDK" model.
twsapi_macunix folder (containing IBJts).quanuxctl integrate tws_api --path ~/Downloads/twsapi_macunix
This copies the SDK to extensions/sdks/twsapi, making it available for builds.This extension uses Cython (tws_api.pyx) for a faster, more robust bridge to the C++ Adapter.
import tws_api
# Connect to TWS (Port 7496) or Gateway (4001)
# Note: Cython wrapper uses mapped types
adapter = tws_api.TwsAdapter("127.0.0.1", 7496, 0)
adapter.connect()
# Send High-Performance Order
# ID, Symbol, Side, Qty, Price
# Side: 0=Buy, 1=Sell, 2=Short, 3=Cover
adapter.send_order(101, "AAPL", 0, 100, 150.00)
Link against the tws_api_adapter library. It implements the QuanuX::IExecutionProvider interface, allowing it to be swapped into any C++ Execution Node.