بنقرة واحدة
bitmex-recipe-multi-pair-breakout-watch
Monitor multiple symbols for price breakouts.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Monitor multiple symbols for price breakouts.
التثبيت باستخدام 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-multi-pair-breakout-watch |
| description | Monitor multiple symbols for price breakouts. |
Watch several perpetual contracts simultaneously for price breakouts above resistance or below support, optionally confirmed by volume.
jq installed.bitmex market instrument --active -o json \
| jq '[.[] | select(.typ == "FFWCSX") | {symbol, lastPrice, high24h: .highPrice, low24h: .lowPrice}]'
Use highPrice and lowPrice as initial support/resistance candidates.
declare -A RESISTANCE=( ["XBTUSD"]=100000 ["ETHUSD"]=4000 ["SOLUSDT"]=250 )
declare -A SUPPORT=( ["XBTUSD"]=90000 ["ETHUSD"]=3500 ["SOLUSDT"]=200 )
bitmex ws trade:XBTUSD trade:ETHUSD trade:SOLUSDT \
| jq '{symbol: .data[0].symbol, price: .data[0].price}'
SYMBOLS="XBTUSD ETHUSD SOLUSDT"
while true; do
for SYM in $SYMBOLS; do
PRICE=$(bitmex market instrument --symbol $SYM -o json | jq '.[0].lastPrice')
R=${RESISTANCE[$SYM]}
S=${SUPPORT[$SYM]}
if (( $(echo "$PRICE > $R" | bc -l) )); then
echo "BREAKOUT UP: $SYM @ $PRICE > resistance $R"
elif (( $(echo "$PRICE < $S" | bc -l) )); then
echo "BREAKDOWN: $SYM @ $PRICE < support $S"
fi
done
sleep 30
done
bitmex market trades --symbol XBTUSD --bucketed --bin-size 1h --count 3 -o json \
| jq '[.[] | {timestamp, volume, open, close}]'
A breakout on above-average volume (>1.5x the 3-period average) is more reliable than a low-volume spike.
recipe-price-level-alerts skill for simple one-shot notifications.