一键导入
manage-quanux-statistics
Guide for developing and operating the QuanuX Statistics & Research Node.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guide for developing and operating the QuanuX Statistics & Research Node.
用 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 | manage-quanux-statistics |
| description | Guide for developing and operating the QuanuX Statistics & Research Node. |
The QuanuX Statistics Node (quanux_stats) is a purpose-built service for real-time market analysis and signal generation. It bridges the gap between raw market data and high-level strategy logic by providing pre-calculated metrics.
Online Statistics:
Data Persistence:
MARKET.* data from NATS (JSON format).market_stats.duckdb) for offline research and backtesting.Signal Publishing:
STATS.<SYMBOL> on NATS.{"symbol": "ES", "volatility": 12.5, "z_score": 1.2, ...}StatsEngine class.stats_map_ (Red-Black Tree) for per-symbol state.std::mutex for future expansion.InstrumentStats in include/stats_engine.h:
Add a new accumulator (e.g., double sum_log_return).update() in src/stats_engine.cpp:
Implement the online update formula.json derived object in the NATS callback.# Build
cd QuanuX-Statistics/cpp/build
make quanux_stats
# Run (Ensure NATS is up)
./quanux_stats