一键导入
connectors-available
Check which exchanges work from your location and search for tokens with trading rules (min order size, price increment, order types).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Check which exchanges work from your location and search for tokens with trading rules (min order size, price increment, order types).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Step-by-step guide for building autonomous trading agents through 5 phases: design, routine, strategy, dry-run, live.
Create or edit Python routines for market analysis, monitoring, and data visualization. Use when the user asks to create, modify, or fix a routine in the routines/ folder.
Find Cross-Exchange Market Making (XEMM) opportunities by comparing order book depth and liquidity across exchanges. Identifies pairs where one exchange has thin liquidity (ideal for quoting) and another has deep liquidity (ideal for hedging).
Find arbitrage opportunities across exchanges by comparing prices for fungible token pairs like BTC/WBTC and USDT/USDC.
Developer skill for running Hummingbot and Gateway from source, building wheel and Docker images, and testing against Hummingbot API running from source. Use this skill when a developer wants to build, run, or test Hummingbot components locally.
OpenClaw cron job that delivers hourly Hummingbot status updates to your chat — API health, Gateway container, active bots/controllers, executors, and portfolio balances.
| name | connectors-available |
| description | Check which exchanges work from your location and search for tokens with trading rules (min order size, price increment, order types). |
| metadata | {"author":"hummingbot"} |
Test which exchange connectors are accessible from your location and search for tokens across all available exchanges. Shows trading rules including minimum order sizes, price increments, and supported order types.
Ask user which connectors to test:
./scripts/test_all.sh --timeout 10
Fetches trading rules from each connector. If data returns, it's accessible. Results saved to data/trading_rules.json.
When user asks about a token, search and display the trading rules table:
./scripts/search_token.sh --token BTC
Always show the full table to the user:
| Exchange | Pair | Min Order | Min Price Inc | Order Types |
|----------|------|-----------|---------------|-------------|
| hyperliquid_perpetual | BTC-USD | 0.00001 | 0.1 | Limit, Market |
| okx_perpetual | BTC-USDT | 0.0001 | 0.1 | Limit, Market |
| kraken | BTC-USD | 0.0001 | 0.1 | Limit, Market |
| coinbase_advanced_trade | BTC-USD | 0.0001 | 0.01 | Limit, Market |
| kucoin | BTC-USDT | 0.00001 | 0.1 | Limit, Market |
| gate_io | BTC-USDT | 0.0001 | 0.01 | Limit, Market |
Found 488 pairs containing BTC
Test all connectors:
./scripts/test_all.sh --timeout 10
Test specific connectors:
./scripts/test_all.sh --connectors "kraken,okx,hyperliquid" --timeout 10
Search for a token:
./scripts/search_token.sh --token BTC
./scripts/search_token.sh --token SOL
./scripts/search_token.sh --token HBOT
data/trading_rules.json - All trading pairs and rules from available exchangesexport HUMMINGBOT_API_URL=http://localhost:8000
export API_USER=admin
export API_PASS=admin
Scripts check for .env in: ./hummingbot-api/.env → ~/.hummingbot/.env → .env