بنقرة واحدة
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 ويثبّتها لك.
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.
استنادا إلى تصنيف SOC المهني
| 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.