一键导入
rithmic-cython
Instructions for using the Rithmic Cython Extension (RApiPlus wrapper).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Instructions for using the Rithmic Cython Extension (RApiPlus wrapper).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
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
基于 SOC 职业分类
| name | rithmic_cython |
| description | Instructions for using the Rithmic Cython Extension (RApiPlus wrapper). |
This extension wraps the Rithmic RApiPlus C++ SDK, exposing REngine and callbacks to Python via Cython.
LineInfo, TradeInfo) to Python dictionaries.from rithmic_ext import PyREngineParams, PyLoginParams, RCallbacksBase, PyREngine
# 1. Define Callbacks
class MyCallbacks(RCallbacksBase):
def trade_print(self, info):
print(f"Trade: {info['ticker']} @ {info['price']}")
# 2. Initialize Engine
params = PyREngineParams()
params.app_name = "QuanuX"
engine = PyREngine(params)
# 3. Login
login_params = PyLoginParams()
login_params.set_md_user("my_user")
# ... set other params ...
cb = MyCallbacks()
success, code = engine.login(login_params, cb)
extensions/cpp/rithmic/cython/python3 setup.py build_ext --inplacepytest extensions/cpp/rithmic/cython/tests/