Loading...
Loading...
Revolut X live price and indicator monitoring. Use when the user asks to "monitor prices", "set up alerts", "watch RSI", "track EMA crossover", "volume spike alert", "Bollinger band alert", "MACD alert", or runs revx monitor commands. This is a long-running background process.
npx skill4agent add revolut-engineering/revolut-x-api revx-monitorrevx monitorLive price and technical indicator alerts. Runs as a continuous polling process.
Auth required. Make sureis installed and configured before running these commands. If any command fails with an auth-related error —revx,Auth not configured,No private key found,Authentication failed (401),Invalid signature, or a missing key/config file atinsecure permissions— invoke the~/.config/revolut-x/skill 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.revx-auth
BASE-QUOTEBTC-USDETH-EURSOL-USDrevx-telegramrevx monitor <type>Bashrun_in_background: trueReadTaskStop{ "command": "revx monitor price BTC-USD --direction above --threshold 100000", "run_in_background": true }Started monitoring BTC-USD price in the background. I'll check for alerts periodically.If you'd like to see the live dashboard, run this in a separate terminal:bashrevx monitor price BTC-USD --direction above --threshold 100000Press Ctrl+C to stop. Alerts will also be sent to Telegram if configured.
# Price threshold
revx monitor price BTC-USD --direction above --threshold 100000
# RSI (Relative Strength Index)
revx monitor rsi ETH-USD --direction above --threshold 70 --period 14
# EMA crossover
revx monitor ema-cross BTC-USD --direction bullish --fast-period 9 --slow-period 21
# MACD crossover
revx monitor macd BTC-USD --direction bullish --fast 12 --slow 26 --signal 9
# Bollinger Bands breach
revx monitor bollinger BTC-USD --band upper --period 20 --std-mult 2
# Volume spike
revx monitor volume-spike BTC-USD --period 20 --multiplier 2.0
# Bid-ask spread
revx monitor spread BTC-USD --direction above --threshold 0.5
# Order book imbalance
revx monitor obi BTC-USD --direction above --threshold 0.3
# Price change percentage
revx monitor price-change BTC-USD --direction rise --threshold 5.0 --lookback 24
# ATR breakout
revx monitor atr-breakout BTC-USD --period 14 --multiplier 1.5
# List all types with descriptions
revx monitor types--interval <seconds>| Type | Key Defaults |
|---|---|
| direction: above, threshold: required |
| direction: above, threshold: 70, period: 14 |
| direction: bullish, fast: 9, slow: 21 |
| direction: bullish, fast: 12, slow: 26, signal: 9 |
| band: upper, period: 20, std-mult: 2 |
| period: 20, multiplier: 2.0 |
| direction: above, threshold: 0.5 |
| direction: above, threshold: 0.3 |
| direction: rise, threshold: 5.0, lookback: 24 |
| period: 14, multiplier: 1.5 |
revx events # Last 50 events
revx events --limit 10
revx events --category alert_triggered
revx events --jsonrevx connector telegram add --token <token> --chat-id <id> --test
revx monitor price BTC-USD --direction above --threshold 100000See also:skill for full Telegram connector management.revx-telegram
| Skill | Purpose |
|---|---|
| Configure Telegram notifications for alerts |
| Understand market data and indicators |
| Automated grid trading with monitoring |
| Check balances and order status |
| API key setup and configuration |