“Native” MQL HTTP Client – library MetaTrader 4

"Native" MQL HTTP Client - library for MetaTrader 4
Author: gunzip <spammmmme@gmail.com> Description: This library implements two simple HTTP GET / POST function to communicate with HTTP servers. It doesn’t require any external dll(s) apart from the standard wininet shipped with win32. Moreover it provides some file upload ability. Put this in experts/include subfolder. Usage: #include <ghttp.mqh> string params[2][2]; params[0][0] = “key1”; params[0][1] = … Read more

HTTP using WinINet directly in mql4 – script MetaTrader 4

HTTP using WinINet directly in mql4 - script for MetaTrader 4
Author: mapick This is a “conceptual” script I developed to test the WinINet functions to load a HTTP page directly from mql4 The code imports the wininet.dll original windows library, then it calls all the needed functions, as stated in MSDN documentation, simply translating the mql data types: You have only to run the script … Read more

HTTP requests for new MQL4 (tested in build 600) – library MetaTrader 4

HTTP requests for new MQL4 (tested in build 600) - library for MetaTrader 4
Description: This is a simple MQL4 wrapper that uses Windows native wininet.dll. It allows you to send HTTP requests (currently supported only GET method) to a remote destination and read the body response from MQL that was compiled in build 600 and newer (not in a strict mode). For latest version, issues tracker and contribution … Read more