PulseWatch ยท Guides
Updated July 2026
MetaTrader will happily let your account die in silence. The platform has push notifications, but they mostly cover trade executions โ there is no built-in "your margin level just crossed 300%" or "your VPS has been quiet for two minutes" message. By the time you find out the usual way, it's a stop-out email from your broker.
Traders standardise on Telegram for this because it's free, instant, works on every device, and has a clean bot API. Here are the alerts worth having and the ways to get them.
You can write an EA that checks margin every tick and calls
api.telegram.org via WebRequest. Free and instructive, but there are traps: you must
debounce (or you'll get a message per tick), handle the day rollover in server time, and โ
critically โ a dead terminal can't send you anything. The offline alert, the
one that saves real money, is impossible from inside the terminal alone.
Some copier suites bolt on notifications. If you already run one, check what it covers โ usually trade events, rarely margin thresholds or offline detection, and rarely across many accounts at once.
A push EA streams your account state to a server; the server evaluates thresholds and messages your Telegram. Because the logic runs outside the terminal, it can also detect the terminal going silent โ typically within 90 seconds โ and message you on recovery too. One Telegram link covers all your accounts.
PulseWatch does exactly this. Margin warning and critical thresholds (per-user, transition-only), daily drawdown as a percentage of the broker-day's opening equity with cashflows excluded, offline/recovery detection, and a daily digest at your broker's midnight. Setup is: sign up, attach a read-only EA, tap one link to connect Telegram. First account free.
Why Telegram and not email or SMS? Email is slow and filtered; SMS costs money and truncates. Telegram delivers in about a second, free, with full text โ and traders tend to have it open already.
Do I need to make my own bot? With DIY, yes (via BotFather). With a monitoring service, you usually just tap a deep link that connects your chat.
Will I get spammed during a volatile session? Not if alerts are transition-based: one message when a threshold is crossed, one when it recovers, nothing in between.
More guides: Monitor multiple MT4/MT5 accounts ยท Daily drawdown alerts for funded accounts
PulseWatch ยท Privacy ยท Disclosure