Crypto Threshold Watcher
by @zero2ai-hub
Monitor any crypto token against configurable price/volume thresholds. Fires alerts when entry conditions are met. Use when you need proactive notification t...
clawhub install skill-crypto-threshold-watcherπ About This Skill
name: skill-crypto-threshold-watcher description: Monitor any crypto token against configurable price/volume thresholds. Fires alerts when entry conditions are met. Use when you need proactive notification that a watchlist token has crossed its threshold β not reactive price checks. Supports multiple tokens, multiple threshold types (price above/below, volume spike), and custom alert messages.
Crypto Threshold Watcher
Proactive alert engine for any token on any exchange. Checks watchlist against configurable thresholds and fires signals.
Watchlist Config
Stored at: ~/.openclaw/workspace/trading/watchlist.json
{
"tokens": [
{
"symbol": "GRASSUSDT",
"exchange": "binance",
"thresholds": {
"price_above": 0.30,
"price_below": 0.20,
"volume_24h_above": 50000000
},
"notes": "AI data network β entry above $0.30"
},
{
"symbol": "FETUSDT",
"exchange": "binance",
"thresholds": {
"price_above": 0.20,
"volume_24h_above": 100000000
},
"notes": "ASI Alliance token β volume spike = breakout signal"
}
]
}
Usage
Check all watchlist tokens
node ~/.openclaw/workspace/scripts/trading/threshold-watcher.js
Add a token to watchlist
node ~/.openclaw/workspace/scripts/trading/threshold-watcher.js --add --symbol BTCUSDT --price-above 90000
Check single token
node ~/.openclaw/workspace/scripts/trading/threshold-watcher.js --symbol ETHUSDT
Output
When threshold is crossed:
π¨ THRESHOLD ALERT β GRASSUSDT
Price: $0.3245 (threshold: $0.30 β)
Volume 24h: $62.3M
Signal: ENTRY β price above threshold
Time: 2026-03-17 18:30 UTC
Notes: AI data network β entry above $0.30
When no threshold crossed:
β
GRASSUSDT β $0.28 (below $0.30 threshold, watching)
Data Sources
Cron Integration
Add to TASKS.md cron:
Every 1h: node scripts/trading/threshold-watcher.js
Alerts delivered to Telegram DM automatically.
Threshold Types
| Type | Field | Description |
|------|-------|-------------|
| Price breakout | price_above | Price crosses above level |
| Price breakdown | price_below | Price drops below level |
| Volume spike | volume_24h_above | 24h volume exceeds threshold |
| RSI overbought | rsi_above | RSI > value (requires OHLC data) |
| RSI oversold | rsi_below | RSI < value |
Integration with Trading Pipeline
This skill feeds signals to:
backtest-expert β validate signal before actingskill-trading-journal β log signal + decisionbinance-pro β execute if approvedπ‘ Examples
Check all watchlist tokens
node ~/.openclaw/workspace/scripts/trading/threshold-watcher.js
Add a token to watchlist
node ~/.openclaw/workspace/scripts/trading/threshold-watcher.js --add --symbol BTCUSDT --price-above 90000
Check single token
node ~/.openclaw/workspace/scripts/trading/threshold-watcher.js --symbol ETHUSDT