Never Miss a Market Move

Price alerts, on-chain whale tracking, sentiment shifts, technical breakouts, and AI-generated signals — delivered instantly to your preferred channel. The most comprehensive alert system in crypto.

Set Up Alerts Webhook API Docs

Alerts Where You Need Them

Choose how and where you receive alerts. Every channel delivers the same rich, actionable information — formatted for the platform.

🖥️

Dashboard

Real-time alert feed directly in your Ironbrand dashboard. Alerts appear as toast notifications and are logged in a dedicated alerts panel with full history, filtering, and search. Click any alert to jump directly to the relevant chart or asset page.

📧

Email

Receive detailed alert emails with charts, context, and actionable links. Configure digest mode to batch non-urgent alerts into hourly or daily summaries, or get instant delivery for critical triggers. Rich HTML formatting with embedded mini-charts.

📱

Push Notifications

Instant push notifications on iOS and Android via the Ironbrand mobile app. Alerts arrive even when the app is closed. Tap to open the trading interface with the relevant pair pre-loaded, ready for immediate action.

✈️

Telegram

Connect your Telegram account and receive alerts in a private bot chat or a group channel. Formatted messages include price, change percentage, alert type, and quick-action links. Supports inline buttons for acknowledging or snoozing alerts.

💬

Discord

Add the Ironbrand bot to your Discord server and route alerts to specific channels. Perfect for trading communities — share price alerts, whale movements, and AI signals with your team. Rich embeds with color-coded severity.

🔗

Webhook

Receive structured JSON payloads at any HTTP endpoint. Integrate alerts into your trading bots, custom dashboards, Slack channels, or any automation platform. Full event schema documentation with retry logic and delivery confirmation.

Six Categories of Intelligent Alerts

Go far beyond simple price alerts. Our system monitors price, blockchain activity, market sentiment, technical patterns, AI signals, and breaking news — all in real-time.

💰

Price Alerts

The foundation of any alert system. Set triggers based on absolute price levels or percentage changes across any timeframe.

  • Price crosses above or below a specific level
  • Percentage change exceeds threshold (1h, 4h, 24h, 7d)
  • Price enters or exits a defined range
  • All-time high or all-time low proximity alerts
  • Volume spike detection (abnormal volume vs 20-day average)
  • Price divergence between exchanges
  • Funding rate extremes (perpetual futures)
  • Recurring alerts (trigger every time, not just once)
⛓️

On-Chain Alerts

Monitor blockchain activity that often precedes major price moves. Track whale wallets, exchange flows, and smart contract interactions in real-time.

  • Whale movements: large transfers (configurable threshold)
  • Exchange inflow spikes (potential sell pressure)
  • Exchange outflow spikes (accumulation signal)
  • New wallet activity from known institutional addresses
  • Smart contract deployment from tracked projects
  • Token unlock and vesting schedule alerts
  • Mining/staking reward distribution events
  • Gas price anomalies (Ethereum network congestion)
🧠

Sentiment Alerts

Crowd psychology drives crypto markets. Our NLP engine monitors social media, news, and market indicators to detect sentiment extremes before they impact price.

  • Fear & Greed Index extreme readings (below 20 or above 80)
  • Social volume spikes on Twitter/X, Reddit, Telegram
  • Sentiment polarity shifts (bullish-to-bearish or vice versa)
  • Trending topic detection for specific assets
  • Influencer activity tracking (configurable watchlist)
  • GitHub development activity changes
  • Google Trends breakout detection
  • Long/short ratio extremes on derivatives exchanges
📐

Technical Analysis Alerts

Automated pattern and indicator detection across all supported assets and timeframes. Our engine scans charts 24/7 so you do not have to.

  • RSI overbought (above 70) or oversold (below 30)
  • MACD crossover (bullish or bearish)
  • EMA crossovers (golden cross, death cross)
  • Bollinger Band squeeze and breakout
  • Support/resistance level breaks
  • Trendline touches and breakouts
  • Candlestick pattern detection (hammer, engulfing, doji)
  • Volume-price divergence warnings
🤖

AI Signal Alerts

Our machine learning models generate trading signals by combining technical, on-chain, and sentiment data. Get alerted when the AI detects high-conviction opportunities.

  • New buy/sell signal with confidence score (0-100)
  • Signal strength changes (upgrade/downgrade)
  • Configurable minimum confidence threshold
  • Multi-timeframe signal confluence detection
  • Anomaly detection (unusual market behavior patterns)
  • Regime change alerts (trending to ranging, or vice versa)
  • Correlation breakdown warnings
  • Signal performance tracking and historical accuracy
📰

News & Event Alerts

Stay informed with real-time news monitoring. Our AI classifies news by impact level and relevance to your portfolio, filtering noise and highlighting what matters.

  • Keyword-based monitoring across 500+ sources
  • Impact classification: low, medium, high, critical
  • Regulatory and legal development tracking
  • Exchange listing and delisting announcements
  • Protocol upgrade and hard fork notifications
  • Partnership and integration announcements
  • Macro economic event calendar (FOMC, CPI, jobs data)
  • Security incident and exploit alerts

Build Custom Alerts with Multi-Condition Logic

Combine multiple conditions into a single alert using AND/OR logic. Create sophisticated triggers that fire only when your exact criteria are met.

// Example: Custom multi-condition alert
ALERT "BTC High-Conviction Buy Zone"
WHEN
BTC/USDT RSI(14, 4H) < 30
AND Fear_Greed_Index < 25
AND BTC_Exchange_Outflow_24h > 10000 BTC
AND AI_Signal_Confidence > 75
DELIVER push, telegram, webhook
COOLDOWN 4 hours
// This alert fires when BTC is technically oversold, sentiment is
// in extreme fear, whales are withdrawing from exchanges (bullish),
// and the AI model has high confidence in a buy signal.

Webhook Payloads for Automation

Every alert can be delivered as a structured JSON webhook payload. Build automated trading systems, custom dashboards, or pipe alerts into any platform that accepts HTTP requests.

JSON Payload Example

{
  "alert_id": "a1b2c3d4-e5f6-7890",
  "type": "technical",
  "subtype": "rsi_oversold",
  "asset": "BTC/USDT",
  "exchange": "ironbrand",
  "timestamp": "2025-03-15T14:32:05Z",
  "data": {
    "indicator": "RSI",
    "period": 14,
    "timeframe": "4H",
    "value": 28.4,
    "threshold": 30,
    "direction": "below",
    "price_at_trigger": 64250.00,
    "volume_24h": 1284500000
  },
  "context": {
    "fear_greed_index": 22,
    "ai_signal": "buy",
    "ai_confidence": 78,
    "market_regime": "oversold_bounce"
  },
  "meta": {
    "alert_name": "BTC RSI Oversold",
    "user_id": "usr_abc123",
    "created_at": "2025-01-10T09:00:00Z",
    "trigger_count": 7
  }
}

Integration Features

  • Retry Logic: Failed deliveries are retried up to 5 times with exponential backoff (1s, 5s, 30s, 2m, 10m). After exhausting retries, the event is logged in your alert history.
  • HMAC Signatures: Every webhook includes an X-Ironbrand-Signature header containing an HMAC-SHA256 signature. Verify authenticity on your server to prevent spoofed payloads.
  • Delivery Logs: View complete delivery history for every webhook endpoint — response codes, latency, payload size, and retry attempts. Debug integration issues quickly.
  • Test Mode: Send test payloads to your endpoint to verify your integration before enabling live alerts. Test payloads include realistic sample data.
  • Multiple Endpoints: Route different alert types to different webhook URLs. Send price alerts to your trading bot and sentiment alerts to your Slack channel.
  • Rate Limits: Webhooks are rate-limited to 60 requests per minute per endpoint by default. Contact support to increase limits for high-frequency use cases.

Alert History & Performance Tracking

Every alert is logged with full context. Review your alert history, analyze which alerts led to profitable trades, and refine your alert strategy over time.

📊

Complete Alert Log

Searchable, filterable history of every alert triggered across all channels. Filter by type, asset, date range, or delivery status. Export your alert history as CSV for external analysis. Each log entry includes the full context snapshot at the moment of trigger.

🎯

Alert Accuracy Tracking

Did that RSI oversold alert actually precede a bounce? Our system tracks price action after each alert trigger — measuring 1h, 4h, 24h, and 7d returns post-alert. Over time, you see which alert types and configurations deliver actionable signals and which generate noise.

🔧

Optimization Suggestions

Based on your alert history and subsequent price action, our AI suggests parameter adjustments. For example: "Your RSI alert at 30 triggered 12 times but only 4 led to bounces. Lowering the threshold to 25 would have filtered 6 false signals while keeping all 4 winners."

Noise Reduction & Smart Filtering

More alerts is not better — better alerts is better. Our noise reduction features ensure you only receive signals that are worth your attention.

Cooldown Periods

Set minimum time intervals between repeated triggers of the same alert. If BTC crosses $68,000 and then oscillates around that level, you will not be bombarded with notifications every few seconds. Configure cooldown from 1 minute to 24 hours per alert. The system intelligently groups rapid-fire triggers into a single notification with context about the volatility.

Confirmation Windows

Require a condition to persist for a minimum duration before triggering. A "sustained close above resistance" alert waits for the candle to actually close above the level, not just wick through it momentarily. This dramatically reduces false signals from temporary price spikes and flash wicks that reverse within seconds.

Priority Levels

Assign priority levels (low, medium, high, critical) to each alert. Configure delivery channels per priority — low-priority alerts go only to dashboard, medium to email digest, high to push notification, and critical to all channels simultaneously. During sleeping hours, only critical alerts break through your quiet mode settings.

Smart Batching

When multiple related alerts trigger within a short window (e.g., BTC RSI oversold + ETH RSI oversold + market-wide sell-off), our system groups them into a single "market event" notification. Instead of 10 separate alerts, you get one comprehensive summary with all relevant data points and context about the broader event.

Set Up Your First Alert in 30 Seconds

Free accounts include 25 active alerts across all types and channels. Pro accounts unlock unlimited alerts with advanced multi-condition logic.

Create Free Account Explore Intelligence