"Alert me when BTC breaks $100k AND volume > 2x AND it's not overbought"
"Alert on any watchlist stock breaking 52-week high with volume"
"Alert when trendline breaks THEN RSI confirms within 3 bars"
1---2name: alert-combiner3description: Alert Combiner4---5# Alert Combiner67Combine multiple conditions into powerful composite alerts.89## Overview10Inspired by TradingView's ability to combine up to 5 alert settings, this skill creates sophisticated multi-condition alerts.1112## Condition Types1314### 1. Price Conditions15- Price crosses above/below level16- Price enters/exits zone (rectangle)17- Price % change in timeframe18- Gap up/down detection1920### 2. Indicator Conditions21- RSI above/below level22- MACD cross23- Moving average cross24- Bollinger Band touch/break25- Custom indicator values2627### 3. Drawing Conditions28- Trendline break29- Support/resistance zone touch30- Fibonacci level hit31- Horizontal line cross3233### 4. Volume Conditions34- Volume spike (X times average)35- OBV divergence36- Volume profile level test3738### 5. Time Conditions39- Market open/close40- Session start/end41- Custom time windows42- Day of week filter4344## Logical Operators45```46AND - All conditions must be true47OR - Any condition can be true48NOT - Condition must be false49THEN - Sequential (A happens, then B within X bars)50```5152## Configuration53```yaml54alertCombiner:55 name: "Golden Cross + Volume + RSI"56 conditions:57 - type: "ma_cross"58 fast: 5059 slow: 20060 direction: "above"61 - operator: "AND"62 - type: "volume"63 comparison: "above"64 value: 2.0 # 2x average65 - operator: "AND"66 - type: "rsi"67 period: 1468 comparison: "below"69 value: 7070 actions:71 - alert: "telegram"72 - alert: "webhook"73 - autoTrade: false74 cooldown: 3600 # 1 hour between alerts75```7677## Watchlist Alerts78Apply one composite alert to entire watchlist:79- Scan hundreds of symbols simultaneously80- Trigger when ANY symbol matches81- Include symbol name in alert8283## Actions84- Push notification85- Telegram/Discord message86- Email87- Webhook (for automation)88- Auto-trade (optional)89- Log to journal9091## Use Cases92- "Alert me when BTC breaks $100k AND volume > 2x AND it's not overbought"93- "Alert on any watchlist stock breaking 52-week high with volume"94- "Alert when trendline breaks THEN RSI confirms within 3 bars"
Run npx skillmds@latest add signal-execution-labs/alert-combiner in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Alert Combiner It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Signal-Execution-Labs (@signal-execution-labs) published this skill. Their other Agent Skills are listed on their SkillMD profile.