بنقرة واحدة
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