TelegramNotifyEA • How you can Connect with Telegram @import url(‘https://fonts.googleapis.com/css2?household=Inter:wght@400;500;600&household=Area+Grotesk:wght@500;600&show=swap’); :root { –telegram-blue: #229ED9; } * { margin: 0; padding: 0; box-sizing: border-box; } physique { font-family: ‘Inter’, system_ui, sans-serif; background: linear-gradient(135deg, #0f172a 0%, #1e2937 100%); colour: #e2e8f0; line-height: 1.6; padding: 40px 20px; min-height: 100vh; } .container { max-width: 900px; margin: 0 auto; background: #1e2937; border-radius: 20px; box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4); overflow: hidden; } .header { background: linear-gradient(90deg, #229ED9, #0ea5e9); padding: 40px 50px; text-align: middle; colour: white; } .header h1 { font-family: ‘Area Grotesk’, sans-serif; font-size: 2.8rem; margin-bottom: 8px; } .header p { font-size: 1.25rem; opacity: 0.95; } .content material { padding: 50px; } .step { margin-bottom: 45px; } .step-number { show: inline-flex; align-items: middle; justify-content: middle; width: 42px; top: 42px; background: #229ED9; colour: white; border-radius: 50%; font-weight: 700; font-size: 1.4rem; margin-bottom: 18px; } .step h2 { font-size: 1.75rem; margin-bottom: 20px; colour: #f1f5f9; show: flex; align-items: middle; hole: 15px; } .step ol { counter-reset: step-counter; } .step li { place: relative; padding-left: 35px; margin-bottom: 18px; font-size: 1.15rem; } .step li:earlier than { content material: counter(step-counter); counter-increment: step-counter; place: absolute; left: 0; prime: 3px; width: 24px; top: 24px; background: #334155; colour: #64748b; border-radius: 50%; show: flex; align-items: middle; justify-content: middle; font-size: 0.95rem; font-weight: 600; } .spotlight { background: #0f172a; border-left: 5px strong #229ED9; padding: 18px 24px; margin: 20px 0; border-radius: 8px; font-family: monospace; font-size: 1.1rem; colour: #67e8f9; } .notice { background: #334155; padding: 20px; border-radius: 12px; border-left: 6px strong #f59e0b; margin: 25px 0; } .notice sturdy { colour: #fcd34d; } .button { show: inline-flex; align-items: middle; hole: 10px; background: #229ED9; colour: white; padding: 14px 28px; border-radius: 9999px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; margin-top: 15px; } .button:hover { background: #0ea5e9; remodel: translateY(-3px); box-shadow: 0 10px 15px -3px rgb(34 158 217); } .footer { background: #0f172a; padding: 30px 50px; text-align: middle; font-size: 0.95rem; colour: #64748b; } code { background: #0f172a; padding: 3px 8px; border-radius: 4px; font-family: monospace; }
How you can Join Your MT5 EA to Telegram in 5 Minutes
1
Create Your Telegram Bot
- Open Telegram (cellular or desktop).
- Seek for @BotFather and open the chat.
- Ship the command: /newbot
- BotFather will ask for a reputation → kind one thing like My MT5 Commerce Bot
- Then ask for a username → kind one thing like MyMT5TradeBot (should finish with _bot )
- BotFather will reply together with your Bot Token (instance: 7123456789:AAHxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ).
Copy and put it aside — you will want it within the subsequent step.
2
Get Your Chat ID
Simplest way (really helpful):
- In Telegram, seek for @getmyid_bot
- Begin the chat and ship any message (e.g. hello ).
- The bot will instantly reply together with your Chat ID.
✅ Personal chat: optimistic quantity (e.g. 123456789 )
✅ Group / Channel: detrimental quantity (e.g. -1234567890 or -1001234567890 )
Various (in case you want no additional bots):
- Ship /begin to your new bot.
- Open a browser and go to:
https://api.telegram.org/botYOUR_BOT_TOKEN/getUpdates
(exchange YOUR_BOT_TOKEN with the actual token) - Search for the quantity after “chat”:{“id”: — that’s your Chat ID.
3
Connect the EA to a Chart & Configure It
- In MT5, open any chart (any image/timeframe — it doesn’t matter).
- Drag TelegramNotifyEA from the Navigator panel onto the chart.
- The settings window will open. Fill in these essential fields:
Bot Token → paste the token from BotFather
Chat ID → paste the ID you bought from @getmyid_bot
Show identify in messages → no matter you need (e.g. “My Dwell Account”)
4
Permit WebRequest (VERY IMPORTANT)
With out this step the EA can’t ship messages!
- In MT5 go to: Instruments → Choices → Skilled Advisors tab
- Tick the field “Permit WebRequest for listed URL”
- Click on the Add button and paste precisely this URL:
https://api.telegram.org
⚠️ Group customers: Be sure the bot is added to the group and has “Ship Messages” permission.
✅ When you full these steps, the EA will ship a startup message instantly.
Made for TelegramNotifyEA v1.00 by Maros Petrik
perform copyTokenExample() { const instance = “7123456789:AAHxxxxxxxxxxxxxxxxxxxxxxxxxxxxx”; navigator.clipboard.writeText(instance).then(() => { const btn = doc.querySelector(‘.button’); const originalText = btn.innerHTML; btn.innerHTML = ‘✅ Copied!’; setTimeout(() => btn.innerHTML = originalText, 2000); }); } // Easy confetti for enjoyable console.log(‘%c🚀 TelegramNotifyEA setup information prepared!’, ‘colour:#229ED9; font-size:18px; font-weight:700;’);


