🎯 Goal
Set a target price once and let the Agent execute the trade automatically when the market hits it — no need to watch the charts.
✅ Prerequisites
- Agentic Wallet installed and signed in.
- Chain support: limit orders are only available on BSC and Solana.
- Token rules: buy orders —
fromTokenmust be USDT, USDC, USD1, U or native token; sell orders —toTokenmust be USDT, USDC, USD1, U or native token.
Place a limit buy
"Buy BNB with 100 USDT when the price drops to $500"
"When WETH drops to $2800, buy some with 200 USDT on BSC"
The Agent creates the conditional order and returns a strategy ID. It executes automatically when the price is hit.
Place a limit sell
"Sell 1 BNB for USDT when the price reaches $650"
"Sell 0.5 WETH on BSC when it hits $3500"
The Agent sets up the sell order and confirms in plain language — for example: "I've placed a limit sell for 1 BNB at $650 (strategy ID 9876543210). It will execute automatically once the price is reached."
Check limit orders
"What limit orders do I have open?"
"Show me limit orders still waiting to trigger"
"Check the status of limit order 9876543210"
The Agent summarizes your open orders in plain language — for example: "You have one open order: a limit sell of 1 BNB at $650, still waiting for the trigger price." Each order's status maps to one of the following:
| Status | Description |
|---|---|
WORKING | Waiting for trigger price |
TRIGGERED | Price hit, executing |
PENDING | Processing on-chain |
FINISHED | Executed successfully |
FAILED | Execution failed |
EXPIRED | Order expired |
CANCELED | Order canceled |
Cancel a limit order
"Cancel my BNB limit buy order"
"Cancel all my open orders"
The Agent confirms the cancellation in plain language — for example: "Done — your BNB limit buy order has been canceled and is no longer resting on the book."
⚠️ Risk notice
Limit orders rest on the book until the trigger price is hit — they are not guaranteed to fill, and a resting sell does not protect against a price gap that blows through your trigger. On-chain trading also involves slippage, MEV attacks, and smart-contract risk. Every decision should be based on your own research (DYOR) — Skills provide information and execution capability only, never investment advice.
What's next
- Market Order — Swap immediately at market price instead.
- Automated Strategies — Use limit sells as automated stop-losses.