
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
hello guys,
I have completed the code for sending message from telegram to mt5 but i am having a small error, when sending close command of many close commands at the same time, it can only send one order but not many orders.
Can anyone help me see where I'm going wrong?
hello guys,
I have completed the code for sending message from telegram to mt5 but i am having a small error, when sending close command of many close commands at the same time, it can only send one order but not many orders.
Can anyone help me see where I'm going wrong?
If you are serving many users via the bot there is a 30 interactions per second limit i think
If you are serving many users via the bot there is a 30 interactions per second limit i think
I only use it personally and only to send each mt5 account to telegram.
but when opening or closing the command at the same time, it can only send one message to telegram
I only use it personally and only to send each mt5 account to telegram.
but when opening or closing the command at the same time, it can only send one message to telegram
There was no code when i replied , i see that you can replace the bot.SendMessage with a function that adds the message to a burst list . You could also keep growing the message and send it out of the loop but you would hit character limitations there.
A brief schematic could be like this :
There was no code when i replied , i see that you can replace the bot.SendMessage with a function that adds the message to a burst list . You could also keep growing the message and send it out of the loop but you would hit character limitations there.
A brief schematic could be like this :
Thank you for replying. I will try your way
Never mind....
I found the answer by setting AsHTML flag to true...
bot.SendMessage(InpTelegramId,"<b>Balance: $10056.21</b>",true);
Sorry...
Hi, can u share the code on how to do that ? I am also searching for the code to make the Text Bolded and in Italic style and send to telegram server.
Hi everyone,
I am trying to send a message from MT5 to Telegram using a bot. However, I could not send the message from MT5 to Telegram due to the error: Error Code 400 Description "Bad request: chat not found"
Has anyone encountered the same problem? Can you give some reasons why this error might have occurred?
I did a lot of research online, but I could not get the right answers.
Forum on trading, automated trading systems and testing trading strategies
Adding emoji in telegram messages.
Frédéric LEBRE, 2023.12.04 13:56
Hello,
Please could you help me.
I try to send a message to telegram using emoji.
when emoji unicode is for example : U+2702 i use as string value " \x2702" and if works.
SendTelegramMessage(TelegramApiUrl, TelegramBotToken, ChatId, "\x2702");
But when unicode is like this : U+1F648 nothing works.
I included <Telegram.mqh> as i read in topics, but i do not know how to do more.
Thx for your answers.
Good morning ! Have you found the solution to your problem? Because I have the same concern. THANKS