一键导入
bitmex-recipe-funding-rate-scan
Scan perpetual contracts for funding rate carry opportunities.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Scan perpetual contracts for funding rate carry opportunities.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Price, funding, liquidation, and balance alerts using polling and WebSocket on bitmex-cli.
Autonomy progression for bitmex-cli agents: from read-only market data to autonomous fund management.
Delta-neutral basis trading between BitMEX perpetuals and fixed-date futures: entry, monitoring, and exit.
Dollar cost averaging on bitmex-cli: testnet-first, fixed qty per interval, limit orders, and position cap enforcement.
Error category handling, duplicate order prevention, retry logic, and partial fill management for bitmex-cli.
Minimize trading fees on bitmex-cli: maker vs taker, post-only orders, commission tiers, and fee audit.
| name | bitmex-recipe-funding-rate-scan |
| description | Scan perpetual contracts for funding rate carry opportunities. |
Perpetual contracts charge a funding payment every 8 hours between longs and shorts. When the rate is extreme, the paying side subsidizes the receiving side — this creates a carry trade opportunity.
jq and bc installed.bitmex market instrument --active -o json \
| jq '[.[] | select(.typ == "FFWCSX") | {symbol, fundingRate, markPrice, volume24h}]'
BitMEX pays funding every 8 hours (3 times per day, 1095 times per year):
bitmex market instrument --active -o json \
| jq '[.[] | select(.typ == "FFWCSX") | {
symbol,
fundingRate,
annualizedPct: (.fundingRate * 3 * 365 * 100 | . * 100 | round / 100)
}] | sort_by(.annualizedPct) | reverse'
bitmex market funding --symbol XBTUSD --count 3 --reverse -o json \
| jq '[.[] | {symbol, fundingRate, timestamp}]'
Repeat for high-rate symbols identified in step 2.
Symbols with annualizedPct above +54.75% (0.05% per 8 h) are strong positive carry candidates — short that perp and collect funding. Negative rates below -54.75% favor longs.
# Example: short high-funding perp (validate first)
bitmex order sell XBTUSD 100 --order-type Limit \
--price <markPrice * 1.0001> --validate -o json