Price & Event Alerts Skill
Set up and manage alerts for stock prices, technical signals, and market events.
Capabilities
Price Alerts
- •Price above/below threshold
- •Percentage change alerts
- •52-week high/low alerts
- •VWAP cross alerts
- •Gap alerts (gap up/down)
Technical Alerts
- •Moving average crossovers
- •RSI overbought/oversold
- •MACD signal line cross
- •Bollinger Band breakouts
- •Volume spike alerts
- •Support/resistance breaks
Event Alerts
- •Earnings announcements
- •Dividend ex-dates
- •SEC filing alerts
- •Analyst rating changes
- •Insider trading activity
- •Options unusual activity
Watchlist Alerts
- •Track multiple stocks
- •Group alerts by category
- •Bulk alert management
- •Alert history and triggers
Usage
code
/alert AAPL price > 200 # Price above $200 /alert TSLA price < 180 # Price below $180 /alert NVDA rsi < 30 # RSI oversold /alert AMD ma_cross # Moving average crossover /alert SPY volume > 2x # Volume spike /alert MSFT earnings # Earnings alert /alerts list # View all active alerts /alerts clear AAPL # Remove alerts for stock
Alert Delivery
Alerts are delivered to your connected channels:
- •Telegram: Direct message
- •Slack: Channel or DM
- •Discord: Channel notification
- •WhatsApp: Message notification
Alert Format
code
🚨 PRICE ALERT - AAPL Apple Inc. crossed above $200.00 Current: $201.25 (+2.3%) Volume: 85.2M (1.4x average) Triggered: 10:32 AM EST Quick Actions: /analyze AAPL | /news AAPL
Alert Management
- •Maximum 50 active alerts per user
- •Alerts auto-expire after 30 days (configurable)
- •One-time or repeating alerts
- •Cooldown period to prevent spam
Configuration
Alerts are stored in ~/.stockbot/alerts.json
json
{
"alerts": [
{
"ticker": "AAPL",
"type": "price_above",
"value": 200,
"status": "active",
"created": "2026-01-25T10:00:00Z"
}
]
}