一键导入
ibkr-fix-adapter
Ultra-Low Latency FIX Adapter for Interactive Brokers with 'Turbo' capabilities.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Ultra-Low Latency FIX Adapter for Interactive Brokers with 'Turbo' capabilities.
用 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 | ibkr_fix_adapter |
| description | Ultra-Low Latency FIX Adapter for Interactive Brokers with 'Turbo' capabilities. |
This is the Execution Workhorse of the QuanuX-IBKR Ecosystem. It provides institutional-grade connectivity via the FIX protocol, enhanced with QuanuX performance tuning.
quanuxctl enhance)This extension supports Performance Enhancements that can be triggered via the CLI. This recompiles the adapter with specialized memory allocators and logging strategies.
quanuxctl enhance ibkr_fix --allocator=mimalloc --logger=async
system: Default OS malloc. Safe, standard.jemalloc: (Facebook) Excellent for multi-threaded fragmentation reduction.mimalloc: (Microsoft) Extremely fast, superb for high-frequency object creation/destruction.file: Standard synchronous file logging (Blocking I/O). Safe but slow.async: Ring-buffer logging (spdlog). Non-blocking. Critical for high-throughput strategies.null: Disables all FIX message logging. Maximum speed, zero visibility.user_libs.cmake)Need to link a proprietary math library or hardware accelerator?
Edit extensions/cpp/ibkr_fix/user_libs.cmake:
find_package(IntelIPP REQUIRED)
target_link_libraries(ibkr_fix_adapter PRIVATE ntelIP::ipp)
The build system automatically picks this up during enhance or install.
edit config/ibkr.cfg for your Gateway credentials.
config/FIX42-IBKR.xml (Auto-generated custom tags like 6035).Link against ibkr_fix_adapter in your Execution Node or use standard QuickFIX bindings pointing to this config.