Install
openclaw skills install weex-tradingTrade crypto on Weex exchange via Telegram bot. Enables any OpenClaw agent to check prices, view balances, run DCA strategies, and execute grid trading on Weex — a Binance-compatible CEX with no KYC for API traders. Use when an agent or user wants to trade crypto, automate DCA buying, set up grid strategies, check coin prices, or manage a Weex portfolio. Triggers on "trade crypto", "buy bitcoin", "DCA strategy", "grid trading", "check price", "crypto portfolio", "Weex", "automated trading", "exchange API".
openclaw skills install weex-tradingTrade crypto on Weex exchange through the @WEEXonTONbot Telegram bot. No additional bot fees — you only pay standard Weex exchange fees.
Sign up (no KYC needed for API trading): https://www.weex.com/en/register?vipCode=gjcr
On Weex: Settings → API Management → Create Key → Enable "Spot Trading"
Open @WEEXonTONbot and send:
/connect YOUR_API_KEY YOUR_API_SECRET YOUR_PASSPHRASE
The bot deletes your message immediately for security. Keys are encrypted at rest.
/price BTC — Check current price
/balance — View your portfolio
/dca BTC 100 4h — Auto-buy $100 of BTC every 4 hours
/grid ETH 2000 2500 10 500 — Grid trade ETH between $2000-$2500
/status — View active strategies & P&L
/stop <strategy_id> — Stop a strategy
| Command | Description | Example |
|---|---|---|
/price <coin> | Check spot price, 24h stats | /price SOL |
/balance | Show all non-zero balances | /balance |
/dca <symbol> <amount> <interval> | Start DCA strategy | /dca ETH 50 1d |
/grid <symbol> <low> <high> <levels> <amount> | Start grid strategy (premium) | /grid BTC 60000 70000 20 1000 |
/status | View all strategies with P&L | /status |
/stop <id> | Stop a strategy | /stop dca_a1b2c3d4 |
/connect | Store API credentials | /connect KEY SECRET PASS |
/disconnect | Remove credentials, stop all | /disconnect |
Dollar-cost averaging — automatically buy a fixed USD amount at regular intervals. Free, no premium required.
Intervals: 1h, 4h, 12h, 1d, 3d, 7d
Minimum: $1 USDT per buy
Example: /dca BTC 100 4h buys $100 of Bitcoin every 4 hours.
Place buy/sell orders across a price range to profit from oscillations. Requires 0.1 TON one-time payment.
Parameters:
symbol — Trading pair (e.g., ETH)low / high — Price range boundslevels — Number of grid levels (3-100)amount — Total USDT to invest (min $10)Example: /grid ETH 2000 2500 10 500 creates 10 grid levels between $2000-$2500 with $500 total.
OpenClaw agents can interact with the bot by sending Telegram messages to @WEEXonTONbot. The typical agent workflow:
https://www.weex.com/en/register?vipCode=gjcr, create API keys, then send /connect to the bot./price BTC (or any symbol) to get current market data before making decisions./dca for recurring buys or direct market orders via the Weex API./status to check strategy performance.The bot runs a REST API on port 8960 for programmatic access. Agents on the same host can call:
GET /api/health — Health checkGET /api/price/:symbol — Get price dataGET /api/strategies/:telegramId — List strategiesWeex uses a Binance-compatible REST API at https://api-spot.weex.com. Agents that already integrate with Binance can adapt with minimal changes:
/api/v3/market/ticker/price, /api/v3/order, /api/v3/accountreferences/weex-api.md for full endpoint documentation./connect messages are auto-deleted