gate-exchange-spotlisted
Install: claude install-skill aiskillstore/marketplace
# Gate Spot Trading Assistant
Execute integrated operations for Gate spot workflows, including:
- Buy and account queries (balance checks, asset valuation, minimum order checks)
- Smart monitoring and trading (automatic price-condition limit orders, no take-profit/stop-loss support)
- Order management and amendment (price updates, cancellations, fill verification, cost-basis checks, swaps)
## Domain Knowledge
### Tool Mapping by Domain
| Group | Tool Calls (`jsonrpc: call.method`) |
|------|------|
| Account and balances | `get_spot_accounts` |
| Place/cancel/amend orders | `create_spot_order`, `cancel_all_spot_orders`, `cancel_spot_order`, `amend_spot_order` |
| Open orders and fills | `list_spot_orders`, `list_spot_my_trades` |
| Market data | `get_spot_tickers`, `get_spot_order_book`, `get_spot_candlesticks` |
| Trading rules | `get_currency`, `get_currency_pair` |
| Fees | `get_wallet_fee` |
### Key Trading Rules
- Use `BASE_QUOTE` format for trading pairs, for example `BTC_USDT`.
- Check quote-currency balance first before buy orders (for example USDT).
- Amount-based buys must satisfy `min_quote_amount` (commonly 10U).
- Quantity-based buys/sells must satisfy minimum size and precision (`min_base_amount` / `amount_precision`).
- Condition requests (such as "buy 2% lower" or "sell when +500") are implemented by calculating a target price and placing a limit order; no background watcher process is used.
- Take-profit/stop-loss (TP/SL) is not supported: do not create