ワンクリックで
hft-stats-engine
Usage and architecture of the QuanuX High-Frequency Trading Statistics Engine.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Usage and architecture of the QuanuX High-Frequency Trading Statistics Engine.
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 | HFT Stats Engine |
| description | Usage and architecture of the QuanuX High-Frequency Trading Statistics Engine. |
The QuanuX Stats Engine is a C++20 microservice designed for sub-microsecond signal generation. It ingests binary market data, computes rolling statistics (Welford's algorithm), and emits trading signals via a lock-free queue.
MARKET.BIN NATS subjects. Payload must be a 64-byte quanux::MarketTick struct.Signal structs to an internal SPSC queue when Z-Score > 2.0._mm_pause().quanux::MarketTick)Must be exactly 64 bytes (Cache Line Aligned).
struct alignas(64) MarketTick {
uint64_t local_rec_ts; // 8 bytes
uint64_t exchange_ts; // 8 bytes
double price; // 8 bytes
uint32_t size; // 4 bytes
uint32_t flags; // 4 bytes
uint32_t instrument_id; // 4 bytes
// Implicit Padding: 4 bytes here
uint64_t internal_arrival_ts;// 8 bytes
uint64_t processing_start_ts;// 8 bytes
uint8_t _pad[8]; // 8 bytes Explicit Padding
};
./quanux_stats
Use the provided Python script to send compliant binary packets:
python3 verify_hft_engine.py
Run the micro-benchmark to measure internal SPSC latency:
./benchmark_hft_engine