Implementation of MT4/MT5 EA real-time push messages through WeChat and QQ

This is my original article on CSDN, please indicate when reprinting

Many people in MT4/MT5 push information through email, which is slow, unstable and easy to miss.
I believe many people are looking for ways to push messages in real time through WeChat and QQ. I myself have been searching online for a long time and have not found it.
Tencent has specially protected the conversation windows of QQ and WeChat. It is no longer easy to send and read the contents of the conversation window using standard programs (especially the text reading in the conversation window, Tencent has done more protection) , and then switching to the MT4/MT5 programming language to design is naturally more troublesome, because the MQL4/MQL5 language does not support pointers. Although the interface at the bottom of the calling system can be called, it is still quite troublesome to transcribe. (The above are all nonsense to make up the word count)
In 2017, I thought hard for several days and finally realized it. Although it is a relatively stupid method, it can already meet the production requirements. Both WeChat and QQ can push EA messages in real time, with a delay of basically 1 second and no omissions.

The picture below shows the effect of WeChat push, which can also be received via QQWeChat reception effect, QQ reception can also be used

Information can be sent to any contact, or sent to WeChat groups or QQ groups

After two years of internal use within the team, it has become stable. The method is implemented through a C++ plug-in developed by myself (not forwarded by email, it has nothing to do with the email). Friends who need the plug-in can leave a message or send me a private message.

Guess you like

Origin blog.csdn.net/flash_temp/article/details/100693425