popup tip: any bar’s local time – script MetaTrader 4

NULL
Description: With warm help of WHRoeder, I finally finished this, many people wanted it for years. —-Manually draw a verticle line, this script will draw a text tip of the bar’s LOCAL time. Move verticle line around, tip will change accordingly. Very simple code, no dll things. Recommendations: If anything goes wrong, check if there’s … 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