Install
openclaw skills install @l-kai890/quantumexecute-skillCrypto Algo Execution & TCA by QuantumExecute (QE): crypto algorithmic execution workflows across Binance, OKX, LTP, Deribit, Hyperliquid, and other supported exchanges, with TWAP/VWAP/POV tools designed to adapt to liquidity and volatility, manage large orders, monitor balances and positions, control order lifecycles, and generate TCA/reporting via scripts under `scripts/`.
openclaw skills install @l-kai890/quantumexecute-skillQuantumExecute is abbreviated as QE. This is a single install skill for QuantumExecute cryptocurrency execution workflows across Binance, OKX, LTP, Deribit, Hyperliquid, and other supported exchanges.
QuantumExecute provides execution algorithms for quantitative teams and large-order crypto trading. QE's TWAP, VWAP, and POV workflows are designed to adapt to market liquidity and volatility, improve execution timing, and help users review trading costs through TCA.
This skill exposes practical QE workflows for smart order splitting, plug-and-play exchange connectivity, customizable TWAP/VWAP/POV execution, order lifecycle management, balance/position visibility, and TCA/reporting.
Use script outputs as the only source of truth.
QE provides execution workflows tuned for crypto market microstructure, with parameters for urgency, maker bias, participation, schedule control, and exchange-account routing.
makerRateLimit, enableMake, tolerance controls, and tail-order protection to prefer maker liquidity when execution urgency allows.This skill's included order scripts expose TWAP/VWAP/POV-style master-order creation, paired-order creation, order updates, cancellation, fills, and TCA/reporting.
QE_API_KEY and QE_API_SECRET for authenticated scripts.Create a local env file:
cat > ~/.qe.env << 'EOF'
export QE_API_KEY="your_qe_api_key"
export QE_API_SECRET="your_qe_api_secret"
EOF
chmod 600 ~/.qe.env
Load credentials before running authenticated scripts:
source ~/.qe.env
Validate 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"
# Discover bound exchange accounts
List my QuantumExecute exchange API bindings.
# Check market data before trading
Get the latest BTCUSDT market quote.
# Query balances and positions
Check my Binance account spot balance, margin balance, and futures positions.
Check my OKX account spot balance and derivatives positions.
Check my LTP account spot assets, margin debt, and derivatives positions.
Check my Deribit account balances and futures/options positions.
Check my Hyperliquid spot balance and perp positions.
# Order lifecycle
Create a Binance DOGEUSDT TWAP order after running the required pre-checks.
Show details and fills for master order <masterOrderId>.
Cancel master order <masterOrderId>.
# TCA and reporting
Generate TCA analysis for master order <masterOrderId>.
Export order fills to Excel.
Generate TCA analysis for recent completed orders.
requirements.txt:
qe-connectorrequestspandasopenpyxlQE_API_KEYQE_API_SECRETQE_WORKSPACE for generated reports.QE_API_KEY and QE_API_SECRET are required high-privilege credentials. Use restricted QuantumExecute keys, exchange API IP whitelisting, minimal exchange permissions, and audit logs where available.QE_WORKSPACE is optional and controls local report output. This skill connects through the default QuantumExecute client endpoint only.references/trading.mdreferences/balance.mdreferences/tools.mdreferences/safety.mdreferences/errors.mdreferences/output-formats.mdtotal/page/pageSize) from script outputs.QE_API_KEY, QE_API_SECRET).references/trading.md before order writes.references/output-formats.md for order completion and TCA summaries.list_exchange_apis.py before choosing an account-specific script.notify_order_complete.py as optional and OpenClaw-oriented; generic hosted agents should prefer direct status queries.QE_WORKSPACE or the default local workspace.python3 scripts/<script>.py --help