ワンクリックで
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 ページを確認してインストールできます。
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 | 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/