revx-trading
Trading (revx order place / revx order cancel)
Place market and limit orders, cancel open orders.
Auth required. Make sure
revxis installed and configured before running these commands. If any command fails with an auth-related error —Auth not configured,No private key found,Authentication failed (401),Invalid signature,insecure permissions, or a missing key/config file at~/.config/revolut-x/— invoke therevx-authskill immediately and apply the fix yourself. Do not interrupt the user to ask them to run setup. Only escalate to the user for steps only they can perform (pasting the API key, registering the public key in their Revolut X profile, choosing a passphrase). After the fix, retry the original command.
Symbols use BASE-QUOTE format with a dash: BTC-USD, ETH-EUR, SOL-USD. Check pair constraints with revx market pairs (see revx-market skill).
order place supports --json or --output json for machine-readable output.
Behavioral Instructions for Claude
Human Confirmation Required
NEVER execute revx order place or revx order cancel without explicit user confirmation. These commands move real money.
Before running any order command, present a confirmation summary to the user:
Order to place:
- Pair: BTC-USD
- Side: buy
- Type: limit @ $95,000
- Size: 0.001 BTC
Shall I proceed?
Only execute after the user explicitly approves (e.g., "yes", "go ahead", "do it").
For revx order cancel --all, warn the user that this cancels every open order and confirm.
Missing Parameters — Always Ask, Never Guess
All required parameters must come from the user. If any are missing, ask for them before building the command.
Required for every order:
- Symbol — which pair? (e.g.,
BTC-USD) - Side — buy or sell?
- Size — how much? (
--qtyfor base currency or--quotefor quote currency) - Order type — market (
--market) or limit (--limit <price>)?
Never assume defaults for these parameters. If the user says "buy some BTC", ask:
- How much? (quantity in BTC or dollar amount)
- Market order or limit? (if limit, at what price?)
Optional flags (--post-only) can be omitted unless the user requests them.
Place Orders
# Market order (buy 0.001 BTC at best price)
revx order place BTC-USD buy --qty 0.001 --market
# Limit order (buy 0.001 BTC at $95,000 or better)
revx order place BTC-USD buy --qty 0.001 --limit 95000
# Post-only limit (maker only, cancelled if would take)
revx order place BTC-USD buy --qty 0.001 --limit 95000 --post-only
# Quote-sized order (buy $500 worth of BTC at market)
revx order place BTC-USD buy --quote 500 --market
Arguments: <symbol> <side>
symbol:BASE-QUOTEformat (e.g.,BTC-USD,ETH-EUR)side:buyorsell(case-insensitive)
Flags:
| Flag | Description |
|---|---|
--qty <amount> |
Size in base currency (e.g., 0.001 for BTC) |
--quote <amount> |
Size in quote currency (e.g., 500 for USD) |
--market |
Market order (required unless --limit) |
--limit <price> |
Limit price (required unless --market) |
--post-only |
Post-only execution (limit orders only) |
Must specify either --qty or --quote (not both).
Cancel Orders
revx order cancel <order-id> # Cancel a single order
revx order cancel --all # Cancel all open orders
Error Reference
| Error | Cause | Fix |
|---|---|---|
| Order rejected (400) | Invalid params or insufficient funds | Check pair constraints via revx market pairs |
| Not found (404) | Invalid order ID | Verify with revx order open (see revx-account skill) |
| Rate limit (429) | Too many requests | Wait for retryAfter duration |
Related Skills
| Skill | Purpose |
|---|---|
revx-account |
Check balances, view order status and fills after trading |
revx-market |
Check prices and pair constraints before trading |
revx-auth |
API key setup and passkey configuration |
revx-strategy |
Automated grid trading bot |