• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 4:04pm
  • Search
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 4:04pm
Search
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Search
Search
Search

Bookmark Thread

First Page First Unread Last Page Last Post

Printable Version

Similar Threads

ECN && STP && Scalping && Hedging - Broker Review - Oct 2009 24 replies

MT4 can't send email notification with hMailServer 0 replies

MT4 E-Mail Notification 4 replies

Meta Trader SMS notification 2 replies

Mobile notification of your emails (Yahoo/Hotmail) 2 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 26
Attachments: Send notification from MT 4 & 5 to Telegram
Exit Attachments

Send notification from MT 4 & 5 to Telegram

  • Last Post
  •  
  • 1 2345Page 6 7
  • 1 45Page 6 7
  •  
  • Post #101
  • Quote
  • May 28, 2019 12:29am May 28, 2019 12:29am
  •  uyin
  • | Joined May 2019 | Status: Member | 8 Posts
I try add bot in public channel.
Assign bot as Admin.
But Bot cannot send message in channel.
Why?
  • Post #102
  • Quote
  • May 28, 2019 9:42am May 28, 2019 9:42am
  •  uyin
  • | Joined May 2019 | Status: Member | 8 Posts
Quoting uyin
Disliked
I try add bot in public channel. Assign bot as Admin. But Bot cannot send message in channel. Why?
Ignored
Sorry , already solved by use Channel token
  • Post #103
  • Quote
  • May 28, 2019 9:43am May 28, 2019 9:43am
  •  uyin
  • | Joined May 2019 | Status: Member | 8 Posts
How to make alert format in MT5 so that can receive below format:

When open, receive notification :
Open buy = 1.2340
Tp = 1.2440
SL = 1.2240
Acc Balance = 1,000

When close receive notification:
Close Buy = 1.2440
Profit/Loss = 0.01
Acc Balance = 1,000.01
  • Post #104
  • Quote
  • May 29, 2019 11:54pm May 29, 2019 11:54pm
  •  muggle
  • | Joined Aug 2018 | Status: Member | 23 Posts
Quoting uyin
Disliked
How to make alert format in MT5 so that can receive below format: When open, receive notification : Open buy = 1.2340 Tp = 1.2440 SL = 1.2240 Acc Balance = 1,000 When close receive notification: Close Buy = 1.2440 Profit/Loss = 0.01 Acc Balance = 1,000.01
Ignored
I am not sure not yet test

try modify
Inserted Code
     message += StringFormat("----CLOSE PROFIT----\r\n%s %s lots\r\n%s @ %s\r\nCP - %s \r\nTP - %s \r\nProfit: %s PIPS \r\nAccount Balance: %s PIPS \r\n--------------------------------\r\n",
            order_type(),
            DoubleToStr(OrderLots(),2),
            OrderSymbol(),
            DoubleToStr(OrderOpenPrice(),MarketInfo(OrderSymbol(),MODE_DIGITS)),                
            DoubleToStr(OrderClosePrice(),MarketInfo(OrderSymbol(),MODE_DIGITS)),          
            DoubleToStr(OrderTakeProfit(),MarketInfo(OrderSymbol(),MODE_DIGITS)),
            DoubleToStr(order_pips(),1)    
            DoubleToStr(AccountBalance(),2)    
     );
  • Post #105
  • Quote
  • May 30, 2019 12:16pm May 30, 2019 12:16pm
  •  femchaps
  • | Joined May 2017 | Status: Member | 16 Posts
Sleep(1000); //to prevent sending more than 1 message per second

Please I want the script to send every message as they come. What should i do to the above? Should i comment it out, or what?
  • Post #106
  • Quote
  • Jun 4, 2019 8:12am Jun 4, 2019 8:12am
  •  lehuuhai014
  • | Joined Feb 2019 | Status: Member | 3 Posts
Quoting uyin
Disliked
{quote} Sorry , already solved by use Channel token
Ignored
how can you find a channel token, can you show me.
  • Post #107
  • Quote
  • Jun 4, 2019 12:01pm Jun 4, 2019 12:01pm
  •  Proyeto5k
  • | Joined Jul 2018 | Status: Member | 3 Posts
Hello this works perfect... is possible to add the function or guide me when order is modify? for example tp and st are changed.
  • Post #108
  • Quote
  • Jun 11, 2019 10:15am Jun 11, 2019 10:15am
  •  BakkerBars
  • | Joined Jun 2019 | Status: Junior Member | 1 Post
Hi AleksandrM,

I work with a SMA cross indicator that provide me alerts when a cross happend.
Now I get a messages in MetaTrader on my PC and mobile, also I receive a nice email.

But what I really would like if I can get these notification in my own telegram channel.

Can you help me?

Greetings!!
  • Post #109
  • Quote
  • Jun 13, 2019 2:27am Jun 13, 2019 2:27am
  •  Pesartala200
  • | Joined Jul 2013 | Status: Member | 1 Post
{"ok":false,"error":"Empty request "}
  • Post #110
  • Quote
  • Jun 15, 2019 12:24pm Jun 15, 2019 12:24pm
  •  hanhthong
  • | Joined Jun 2019 | Status: Junior Member | 1 Post
Quoting AleksandrM
Disliked
Hi, there! Here instruction how to send notification to telegram 1. Get Token tmsrv_bot 2. Copy function tms_send() or include tmsrv.mqh 3. Paste your token: bool tms_send(string message, string token="YOUR_TOKEN_HERE") Usage example: void OnTick(){ //% if(iRSI(NULL,0,14,PRICE_CLOSE,1)>30 && iRSI(NULL,0,14,PRICE_CLOSE,0)<30) { tms_send(StringFormat("%s RSI is oversold - time to BUY",Symbol())); } if(iRSI(NULL,0,14,PRICE_CLOSE,1)<70 &&...
Ignored

Hi and tks your solution, i dont use EA , i use CUSTOM INDICATOR to get my signal, but when i use tmser.mqh, i got 3 trouble

IsTesting - function not defined
IsOptimization - function not defined
Time - undeclared identifier

Which way can i fix troubles? Tks for reply
  • Post #111
  • Quote
  • Jun 18, 2019 8:18pm Jun 18, 2019 8:18pm
  •  PriceActionM
  • | Joined Jun 2019 | Status: Junior Member | 1 Post
I have my own custom indicator..how can I use it in your program to send a notification to Telegram?
  • Post #112
  • Quote
  • Jun 18, 2019 9:58pm Jun 18, 2019 9:58pm
  •  tillionaire
  • Joined Jul 2016 | Status: Member | 329 Posts
Quoting PriceActionM
Disliked
I have my own custom indicator..how can I use it in your program to send a notification to Telegram?
Ignored
You need to integrate Telegram's API, message me if you need help.
  • Post #113
  • Quote
  • Jun 19, 2019 6:32am Jun 19, 2019 6:32am
  •  rageyong
  • | Joined Apr 2017 | Status: Member | 3 Posts
i am facing this problem, and cant send to my channel. bot already create.
Attached Image
  • Post #114
  • Quote
  • Jun 19, 2019 12:09pm Jun 19, 2019 12:09pm
  •  zemuss
  • | Joined Aug 2018 | Status: Member | 4 Posts
Quoting DedyEdya
Disliked
Hi AleksandrM the BOT very well for my EA and works like Charms, but i would like to code into ForexFactoryCalendar https://www.mql5.com/en/code/15931 is that possible to convert all the (message) into it {file}
Ignored
Does anyone know if this was done ?
  • Post #115
  • Quote
  • Jun 19, 2019 2:23pm Jun 19, 2019 2:23pm
  •  rageyong
  • | Joined Apr 2017 | Status: Member | 3 Posts
line 1 column 1 also fail. dont know why. any one can help me?
Attached Image (click to enlarge)
Click to Enlarge

Name: line1column1.jpg
Size: 121 KB
  • Post #116
  • Quote
  • Jun 23, 2019 10:25pm Jun 23, 2019 10:25pm
  •  ammar18
  • | Joined Jan 2019 | Status: Junior Member | 3 Posts
Quoting lizixu
Disliked
Hi Alex, thanks for the service, it is working great for me. Is there a way to send screenshots to Telegram?
Ignored
did you ever find soolution for this bro?
  • Post #117
  • Quote
  • Jun 23, 2019 10:27pm Jun 23, 2019 10:27pm
  •  ammar18
  • | Joined Jan 2019 | Status: Junior Member | 3 Posts
Quoting Retin
Disliked
Hello guys, i am not a programmer and the language of programming is strange to me. i simply wish for a way that my indicator could send an alert to my telegram channel. please help me out with a non-programming language solution. Thank you please.
Ignored
did you ever find a way to do this? thank you
  • Post #118
  • Quote
  • Jun 23, 2019 10:27pm Jun 23, 2019 10:27pm
  •  ammar18
  • | Joined Jan 2019 | Status: Junior Member | 3 Posts
Quoting NLfxtrader
Disliked
{quote} I have the same i build a indicator which sends a signal at a criteria i just need to relay the signal to a group on telegram any suggestions would be highly appreciated !
Ignored
any luck with this??
  • Post #119
  • Quote
  • Jun 24, 2019 8:47am Jun 24, 2019 8:47am
  •  Scorp1on1
  • | Joined Nov 2018 | Status: Member | 44 Posts
There is A script sends indicator alerts and a chart screenshot to the Telegram? Anyone knows the name or could be done and shared it would be very helpful for us.
  • Post #120
  • Quote
  • Jun 25, 2019 9:44am Jun 25, 2019 9:44am
  •  rageyong
  • | Joined Apr 2017 | Status: Member | 3 Posts
any 1 have telegram to help this post?
Thread Tools Search this Thread
Show Printable Version Show Printable Version
Email This Thread Email This Thread
Search this Thread:

Advanced Search

  • Platform Tech
  • /
  • Send notification from MT 4 & 5 to Telegram
  • Reply to Thread
    • 1 2345Page 6 7
    • 1 45Page 6 7
1 trader viewing now
  • More
Top of Page
  • Facebook
  • Twitter
About FF
  • Mission
  • Products
  • User Guide
  • Media Kit
  • Blog
  • Contact
FF Products
  • Forums
  • Trades
  • Calendar
  • News
  • Market
  • Brokers
  • Trade Explorer
FF Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow FF
  • Facebook
  • Twitter

FF Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Forex Factory® is a brand of Fair Economy, Inc.

Terms of Service / ©2019