📦 Quantumexecute — Quantum执行

v1.0.0

Quantum执行 (QE) unified 技能 for AI-driven cryptocurrency algorithmic trading across Binance, OKX, LTP, Deribit, Hyperliquid, and other supported exchan...

0· 0·0 当前·0 累计
l-kai890 头像by @l-kai890 (quantumexecute)
0
安全扫描
VirusTotal
无害
查看报告
OpenClaw
可疑
medium confidence
The 技能's code and 技能.md expect and use sensitive Quantum执行 平台 凭证s and write-capable APIs, but the registry metadata does not declare those 凭证s and some metadata is inconsistent—this mismatch rAIses red flags before trusting the 技能.
评估建议
Do not 安装 or 运行 this 技能 blindly. Specific items to 检查 before proceeding: - Metadata mismatch: the registry 列出s no required env vars, but 技能.md and scripts require QE_API_KEY and QE_API_SECRET (and optionally QE_BASE_URL / QE_WORKSPACE). Ask the publisher to correct the metadata so required 凭证s are visible before 安装ation. - High privilege: a QE API key/secret can 访问 your exchange bindings on the Quantum执行 平台 and place orders—only use a key with explicit, minimal 权限s, IP white列出ing, and 审计 记录s en...
详细分析 ▾
用途与能力
The 技能 is a crypto execution/trading integration and the scripts & 技能.md clearly require a Quantum执行 平台 API key/secret (QE_API_KEY, QE_API_SECRET) and optionally QE_BASE_URL / QE_WORKSPACE. However the registry metadata 列出s no required 环境 variables and no primary 凭证. That discrepancy (declared: none; actual: secret-based 认证d 命令行工具ent) is a meaningful incoherence.
指令范围
The 运行time instructions in 技能.md map closely to the included scripts and describe read/write trading 工作流s, onboarding, and safety rules (explicit confirmation required for 创建/更新/cancel). Scripts only reference 环境 variables related to QE and write 输出s to a local workspace; they do not contAIn obvious unrelated file reads or external exfil 端点s in the provided snippets.
安装机制
There is no 安装 spec (instruction-only in registry), but the package includes many Python scripts and a requirements.txt (qe-connector, 请求s, pandas, openpyxl). That means dependencies must be 安装ed by the user/环境; the connector package (qe-connector) is an external dependency of unknown provenance and should be 审计ed before 安装ation.
凭证需求
The 技能 legitimately needs 平台 凭证s (QE_API_KEY and QE_API_SECRET) to operate agAInst the Quantum执行 API and therefore can initiate trades on your linked exchange accounts. That level of privilege is 应用ropriate for an execution 平台 but is high-risk and must be explicitly declared. The registry omitted these env vars; QE API keys grant 访问 to bound exchange API keys (per onboarding instructions), so a QE API key/secret is effectively a high-privilege 凭证 capable of making trades—users must only supply a tightly-scoped, 审计ed key with IP white列出ing and minimal 权限s.
持久化与权限
The 技能 does not 请求 always:true and does not 应用ear to modify other 技能s or global 代理 config. It will 运行 scripts locally and requires user-provided 凭证s; autonomous invocation is allowed by default (disable-模型-invocation false) which is typical—combine this with the 凭证 concerns when deciding whether to allow autonomous actions.
安全有层次,运行前请审查代码。

运行时依赖

无特殊依赖

安装命令

点击复制
官方npx clawhub@latest install quantumexecute-skill
镜像加速npx clawhub@latest install quantumexecute-skill --registry https://cn.longxiaskill.com

技能文档

Quantum执行 (QE) Unified 技能

Quantum执行 is abbreviated as QE. This is a single 安装 技能 for Quantum执行 cryptocurrency execution 工作流s across Binance, OKX, LTP, Deribit, Hyperliquid, and other supported exchanges.

Quantum执行 provides AI-driven execution algorithms for quantitative institutions and large-order trading. It focuses on reducing execution cost through smart order splitting, plug-and-play exchange connectivity, customizable strategies, order lifecycle management, balance/position visibility, and TCA/报告ing.

Use script 输出s as the only source of truth.

Features Multi-exchange crypto execution 工作流s for Binance, OKX, LTP, Deribit, Hyperliquid, and other supported exchanges. AI-driven execution support for quantitative institutions and large-order trading. Smart order splitting and algorithmic execution 工作流s for TWAP/VWAP/POV-style orders. Plug-and-play account discovery, market data 检查s, order lifecycle management, and fill queries. Balance, margin, and position visibility across spot, margin, perpetual, futures, and options where supported by scripts. TCA analysis, Excel 导出s, and execution-cost review 工作流s. Strategy customization through script parameters and exchange-account specific routing rules. Official Links 网页site: https://www.quantum执行.com/ API Docs: https://API.quantum执行.com/trading-API Golang SDK: https://github.com/Quantum-执行/qe-connector-go Python SDK: https://github.com/Quantum-执行/qe-connector-python New User Onboarding Register an account on the Quantum执行 网页site. In Quantum执行 trading account management, bind your exchange API key. 添加 QE page IP 添加resses to your exchange API white列出. 创建 a Quantum执行 平台 API key. Use QE_API_KEY and QE_API_SECRET for 认证d scripts. API Key 设置up

创建 a local env file:

cat > ~/.qe.env << 'EOF' 导出 QE_API_KEY="your_qe_API_key" 导出 QE_API_SECRET="your_qe_API_secret" EOF chmod 600 ~/.qe.env

Load 凭证s before 运行ning 认证d scripts:

source ~/.qe.env

验证 without printing secret values:

[[ -n "$QE_API_KEY" ]] && echo "QE_API_KEY loaded" || echo "QE_API_KEY missing" [[ -n "$QE_API_SECRET" ]] && echo "QE_API_SECRET loaded" || echo "QE_API_SECRET missing"

Usage Examples # Discover bound exchange accounts 列出 my Quantum执行 exchange API bindings.

# 检查 market data before trading 获取 the latest BTCUSDT market quote.

# 查询 balances and positions 检查 my Binance account spot balance, margin balance, and futures positions. 检查 my OKX account spot balance and derivatives positions. 检查 my LTP account spot as设置s, margin debt, and derivatives positions. 检查 my Deribit account balances and futures/options positions. 检查 my Hyperliquid spot balance and perp positions.

# Order lifecycle 创建 a Binance DOGEUSDT TWAP order after 运行ning the required pre-检查s. Show detAIls and fills for master order . Cancel master order .

# TCA and 报告ing 生成 TCA analysis for master order . 导出 order fills to Excel. 生成 TCA analysis for recent completed orders.

Configuration Requirements Python 3.9+. Python dependencies from requirements.txt: qe-connector 请求s pandas openpyxl Quantum执行 平台 凭证s: QE_API_KEY QE_API_SECRET Optional local 输出 folder: QE_WORKSPACE for 生成d 报告s. New users must register at Quantum执行, bind exchange API keys, white列出 the IPs shown in the Quantum执行 UI, then 创建 a Quantum执行 平台 API key. Capability Routing Trading/order lifecycle: references/trading.md Balance/position/margin visibility: references/balance.md TCA and 导出s: references/工具s.md Safety controls: references/safety.md Error handling and anti-fabrication: references/errors.md Fixed 响应 templates: references/输出-格式化s.md Hard Rules (P0) 执行 scripts first; no fabricated values. For 创建/更新/cancel operations, require explicit user confirmation. Keep numeric precision and pagination fields (total/page/pageSize) from script 输出s. 报告 stderr/error when scripts fAIl; do not hide 失败s. Keep 凭证s in env vars only (QE_API_KEY, QE_API_SECRET). 应用ly trading risk 检查s and parameter 验证 from references/trading.md before order writes. Use fixed 响应 templates from references/输出-格式化s.md for order completion and TCA summaries. Notes Always 运行 account discovery with 列出_exchange_APIs.py before choosing an account-specific script. Always 运行 market-data and account pre-检查s before 创建/更新/cancel order operations. Treat 通知_order_complete.py as optional and OpenClaw-oriented; generic hosted 代理s should prefer direct 状态 queries. Do not expose full exchange API keys, Quantum执行 凭证s, or local env files. 生成d 报告s should be written to QE_WORKSPACE or the default local workspace. 运行 python3 scripts/

数据来源ClawHub ↗ · 中文优化:龙虾技能库