원클릭으로
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