一键导入
bitmex-recipe-morning-market-brief
Morning summary: prices, funding, positions, and wallet.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Morning summary: prices, funding, positions, and wallet.
用 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-morning-market-brief |
| description | Morning summary: prices, funding, positions, and wallet. |
A structured morning routine that pulls announcements, instrument snapshots, funding rates, positions, wallet balance, and open orders in one pass.
BITMEX_API_KEY and BITMEX_API_SECRET set for private endpoints.jq installed for JSON shaping.Platform notices, maintenance windows, and fee changes appear here first.
bitmex announce list -o json | jq '.[] | {title, date, body: .content[:120]}'
Grab last price, mark price, and 24 h volume for all active contracts.
bitmex market instrument --active -o json \
| jq '[.[] | {symbol, lastPrice, markPrice, volume24h: .volume24h}]'
Filter to perps only:
bitmex market instrument --active -o json \
| jq '[.[] | select(.typ == "FFWCSX") | {symbol, lastPrice, markPrice, fundingRate}]'
bitmex market funding --count 1 --reverse -o json \
| jq '[.[] | {symbol, fundingRate, timestamp}]'
bitmex position list -o json \
| jq '[.[] | select(.currentQty != 0) | {symbol, currentQty, avgEntryPrice, unrealisedPnl, liquidationPrice}]'
bitmex account margin -o json \
| jq '{walletBalance, marginBalance, availableMargin, unrealisedPnl, currency}'
bitmex order list --reverse -o json \
| jq '[.[] | {orderID, symbol, side, orderQty, price, ordStatus}]'
>> ~/logs/brief-$(date +%F).json.