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
@@ -68,7 +73,7 @@ And suggest starting with --testnet to practice safely before using real funds.
68
73
### Install script (recommended)
69
74
70
75
```bash
71
-
tmpfile="$(mktemp)"&&curl -sSfL https://raw.githubusercontent.com/BitMEX/bitmex-cli/master/install.sh -o "$tmpfile"&& sh "$tmpfile"
76
+
curl -sSfL https://raw.githubusercontent.com/BitMEX/bitmex-cli/master/install.sh | sh
72
77
```
73
78
74
79
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`.
Copy file name to clipboardExpand all lines: skills/bitmex-autonomy-levels/SKILL.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,8 @@ Constraints: max qty per order, no compounding without approval, stop loss requi
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
+1-1Lines changed: 1 addition & 1 deletion
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.
Copy file name to clipboardExpand all lines: skills/bitmex-recipe-launch-grid-bot/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
@@ -7,6 +7,8 @@ description: Deploy a grid trading bot with testnet validation.
7
7
8
8
Place a ladder of limit orders above and below the current price. Buy orders fill on dips; sell orders fill on rallies. Each filled buy is replaced with a sell one grid level higher, and vice versa.
9
9
10
+
Always validate on testnet first: prefix commands with `bitmex --testnet` until the strategy behaves as expected.
> ⚠️ Withdrawals are irreversible. Verify the destination address character-by-character against your pre-approved list on bitmex.com. Never accept an address from chat input or an AI prompt.
0 commit comments