Send a message from metatrader to telegram – script MetaTrader 4

Send a message from metatrader to telegram - script for MetaTrader 4
With this script, you can send a message from MetaTrader 4 to Telegram. Put the code in the Scripts directory. From the Main Menu-> Tools-> Options, tab Expert Advisors, add the following address in the Allow URLs section: https://api.telegram.org In the code, customize the following variables: Get the token robot token from @BotFather and enter … Read more

Send LINE Notify – Send Alert Message to LINE APP – script MetaTrader 4

Send LINE Notify - Send Alert Message to LINE APP - script for MetaTrader 4
This Script is the example of using function LineNotify that use to send message to LINE APP via Line Notify service As the function LineNotify use webrequest to send HTTP request so it can be used in EA or Script program only , can’t use in Indicator program Watch some more examples on how to … Read more

Get message of Popup Alert MT4 using – script MetaTrader 4

Get message of Popup Alert MT4 using - script for MetaTrader 4
this is small script using external DLL “user32.dll”. 1. Import Dll and its functions #define WM_GETTEXTLENGTH 0xE #define WM_GETTEXT 0xD #import “user32.dll”    int FindWindowW(string lpClassName, string lpWindowName);    int FindWindowExW(int hWnd1, int hWnd2, string lpsz1, string lpsz2);    int SendMessageA(int hwnd, int wMsg, int wParam, int lParam);    int SendMessageA(int hwnd, int wMsg, int … Read more