Install
openclaw skills install okx-tradeSetup, install, and use OKX Agent Trade Kit — the official OKX toolkit for AI-powered trading. Use this skill whenever the user mentions: OKX trading, agent tradekit, okx-trade-mcp, okx Skills, installing OKX on OpenClaw, configuring OKX API keys, trading BTC/ETH/crypto with natural language, spot/futures/options/grid bots on OKX, or wants to connect an AI agent to OKX exchange. Trigger this skill even if the user just says "想用 OKX 交易" or "幫我裝 OKX" or "OKX MCP". Covers: installation (OpenClaw Skills or MCP), API key config, natural language trading commands, demo mode setup, and explaining what the toolkit does and how it works.
openclaw skills install okx-tradeOKX Agent Trade Kit 係 OKX 官方出嘅 open-source toolkit,讓 AI agent 直接用自然語言執行交易。
三種使用方式:
npx skills add okx/agent-skills,一行搞掂用戶係用 OpenClaw?
├─ Yes → 用 Skills 安裝方式(最快,一行指令)
└─ No → 用 MCP 安裝方式(npm install + setup)
用戶想交易?
├─ 先確認有無配置 API key
├─ 建議先用 demo 模式測試
└─ 提醒用 sub-account API key,唔好用 main account
直接係 OpenClaw chat 入面 貼呢句(唔係 terminal):
Run `npx skills add okx/agent-skills`, resolve any issues you encounter, then check the BTC price.
呢個會自動裝好四個 skills:
| Skill | Package | 功能 | 需要 API Key? |
|---|---|---|---|
| Market Data | okx-cex-market | 實時行情、K 線、資金費率、未平倉量 | ❌ 唔需要 |
| Trading | okx-cex-trade | Spot、合約、期權、Algo 訂單、Grid Bot | ✅ 需要 |
| Portfolio | okx-cex-portfolio | 餘額、持倉、P&L、帳單、手續費率 | ✅ 需要 |
| Bots | okx-cex-bot | Grid Bot(現貨/合約)、DCA 策略 | ✅ 需要 |
打開 Terminal,執行:
mkdir -p ~/.okx && cat > ~/.okx/config.toml << 'EOF'
default_profile = "demo"
[profiles.live]
api_key = "your-live-api-key"
secret_key = "your-live-secret-key"
passphrase = "your-live-passphrase"
[profiles.demo]
api_key = "your-demo-api-key"
secret_key = "your-demo-secret-key"
passphrase = "your-demo-passphrase"
demo = true
EOF
之後用文字編輯器開 ~/.okx/config.toml,填入真實嘅 API credentials。
去哪攞 API Key? → https://www.okx.com/account/my-api
詳細步驟見 → references/mcp-setup.md
裝好之後,可以直接係 AI chat 入面講:
# 行情查詢(唔需要 API key)
What's the BTC price on OKX?
Show BTC-USDT order book
BTC-USDT-SWAP 嘅資金費率係幾多?
# 帳戶(需要 API key)
Show my account balance
我而家有咩持倉?
# 交易(demo 模式,無風險)
Buy 100 USDT of BTC at market on demo
Set a limit buy for 0.01 BTC at 80000 on demo
Place a stop-loss at 84000 for my BTC-USDT-SWAP long
# Grid Bot
Create a BTC grid bot between 80000 and 100000 with 10 grids and 100 USDT
~/.okx/config.tomlAgent Trade Kit 有 4 層內建安全保護:
--demo Demo 模式 — 模擬資金,唔會動真錢--read-only 只讀模式 — 只能查數據,無法下單[CAUTION],AI 會先確認再執行Q: 點解 market data 唔需要 API key?
A: OKX 市場數據係公開嘅,market module 直接 call 公開 API。
Q: demo 同 live 有咩分別?
A: demo 用模擬資金,config.toml 入面 demo = true 就係 demo 模式。
Q: 我係歐洲用戶 / 美國用戶點辦?
A: 要係 config.toml 加 site = "eea" (歐洲) 或 site = "us" (美國)。
Q: 裝唔到 / 有 error 點辦?
A: 確認 Node.js 已安裝(node --version),要求 Node.js 18+。