<< All versions
Skill v1.0.0
currentAutomated scan100/100cryptoquantumwave/khunquant/alerts
──Details
PublishedJune 11, 2026 at 12:51 AM
Content Hashsha256:d071989dc6c46874...
Git SHAd91cee9b927c
──Files
Files (1 file, 2.7 KB)
SKILL.md2.7 KBactive
SKILL.md · 68 lines · 2.7 KB
version: "1.0.0" name: alerts description: Create, list, and cancel price and indicator alerts. Alerts fire when market conditions are met, using the cron scheduler for persistent monitoring.
Alerts
Set up automated price and indicator alerts so the agent notifies you when market conditions are met.
Alert Management Workflow
list active alerts → suggest threshold → create alert → confirm → cancel when done
- List existing alerts with
action=listto avoid duplicates. - Check the current price with
get_tickerbefore suggesting a threshold. - Create the alert with appropriate condition and threshold.
- Always explain the alert to the user before creating it.
- Cancel with
action=cancelwhen no longer needed.
Tools
set_price_alert
Create, list, or cancel price alerts.
Create (action=create):
provider,account,symbol: as per market-data skillcondition: "above" (fire when price exceeds threshold) or "below" (fire when price drops below)threshold: price levelmessage: custom notification messagerecurring: false (one-shot, default) or true (continuous)
List (action=list): Show all active alerts. No additional params.
Cancel (action=cancel):
alert_id: the ID from the list
set_indicator_alert
Create, list, or cancel indicator-based alerts. Same action pattern as set_price_alert.
Create (action=create):
provider,account,symbol,timeframe: as aboveindicator: RSI, MACD, SMA, or EMAperiod: lookback period (integer, e.g. 9, 20, 50, 200, 350). Defaults: SMA=20, EMA=20, RSI=14. Ignored for MACD (uses 12/26/9).condition: "above" or "below"threshold: indicator value thresholdmessage,recurring: as above
Alert Examples
set_price_alert: BTC/USDT below 60000 → notify meset_price_alert: ETH/USDT above 4000 → sell signalset_indicator_alert: BTC/USDT RSI(1h) below 30 → potential oversold entryset_indicator_alert: BTC/USDT EMA period=9 (4h) above 90000 → bullish crossset_indicator_alert: ZEC/USDT EMA period=350 (1d) above 587.84 → long entryset_indicator_alert: BTC/USDT SMA period=200 (1d) below 60000 → trend break
Notes
- Alerts are persisted in the cron scheduler and survive agent restarts.
- One-shot alerts (recurring=false) auto-cancel after firing.
- Alerts poll every minute — they may fire up to 1 minute after the condition is met.
- The cron tool must be enabled for alerts to function.
- Alerts request
period * 3candles (min 100, max 500). Exchanges with shallow history (e.g. Bitkub TradingView feed ~180 daily bars) will return anot enough data: have X bars, need >= Yerror for very long periods on long timeframes.