You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -70,7 +75,7 @@ And suggest starting with --testnet to practice safely before using real funds.
70
75
### Install script (recommended)
71
76
72
77
```bash
73
-
tmpfile="$(mktemp)"&&curl -sSfL https://raw.githubusercontent.com/BitMEX/bitmex-cli/master/install.sh -o "$tmpfile"&& sh "$tmpfile"
78
+
curl -sSfL https://raw.githubusercontent.com/BitMEX/bitmex-cli/master/install.sh | sh
74
79
```
75
80
76
81
Downloads a pre-built binary for your platform (macOS/Linux, x86_64/arm64), verifies the SHA256 checksum, and installs to `~/.local/bin`. No Rust or build tools needed. No `sudo` required. Requires `curl`, `tar`, and `sha256sum` (or `shasum`). Override the install location with `BITMEX_INSTALL_DIR`.
bitmex order list --symbol XBTUSD -o json 2>/dev/null | jq '.[] | {orderID, ordStatus, price, cumQty}'
65
+
bitmex order list --reverse --symbol XBTUSD -o json 2>/dev/null | jq '.[] | {orderID, ordStatus, price, cumQty}'
66
66
```
67
67
68
68
Constraints: max qty per order, no compounding without approval, stop loss required.
69
69
70
70
## Level 4: Autonomous
71
71
72
+
> ⚠️ Even at this level, active monitoring is required. Dead man's switch failure, position cap misconfiguration, or network outages can result in unprotected positions or runaway accumulation. You remain responsible for all outcomes.
73
+
72
74
Pre-approved strategy parameters. Position limits enforced in code. Dead man's switch active on every session.
73
75
74
76
```bash
@@ -92,6 +94,8 @@ Requirements: strategy approved in writing, position limits in config, automated
92
94
93
95
## Level 5: Fund Management
94
96
97
+
> ⚠️ Even at this level, active monitoring is required. Dead man's switch failure, position cap misconfiguration, or network outages can result in unprotected positions or runaway accumulation. You remain responsible for all outcomes.
98
+
95
99
Multi-account, risk budget per strategy. Each strategy has an independent margin allocation.
Copy file name to clipboardExpand all lines: skills/bitmex-basis-trading/SKILL.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,8 @@ metadata:
14
14
15
15
Basis trading captures the spread between a perpetual and a fixed-date future on the same underlying. The spread converges to zero at expiry, yielding a predictable return when entered at a wide basis.
16
16
17
+
Always validate on testnet first: prefix commands with `bitmex --testnet` until the strategy behaves as expected.
Copy file name to clipboardExpand all lines: skills/bitmex-dca-strategy/SKILL.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ metadata:
12
12
13
13
# bitmex-dca-strategy
14
14
15
-
DCA on BitMEX perpetuals: buy a fixed quantity at regular intervals regardless of price, using limit orders to earn maker rebates.
15
+
DCA on BitMEX perpetuals: buy a fixed quantity at regular intervals regardless of price, using limit orders to potentially reduce costs with maker orders.
16
16
17
17
**Always test with `--testnet` first for at least 5 cycles before using real funds.**
Copy file name to clipboardExpand all lines: skills/bitmex-funding-carry/SKILL.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
name: bitmex-funding-carry
3
3
version: 1.0.0
4
-
description: "Earn funding payments on BitMEX perpetuals: scan rates, entry, monitoring, yield calculation, and exit."
4
+
description: "Capture funding rate payments on BitMEX perpetuals: scan rates, entry, monitoring, yield calculation, and exit."
5
5
metadata:
6
6
openclaw:
7
7
category: "finance"
@@ -113,6 +113,8 @@ fi
113
113
114
114
## Annualized Yield Calculation
115
115
116
+
> Note: annualized yield is illustrative only. Funding rates change every 8 hours and can flip from payment to cost. Past rates are not indicative of future returns.
0 commit comments