A module for handling WebRequest function comfortably with MQL4.
- stdlib.ex4(Defult Library file)
- Download Web.mqh
- Save the file to /MQL4/Include/mql4_modules/Web/Web.mqh
Include the Web.mqh. If you want to access HTTP by GET, call get method.
Web::get("URL", Variable of receive the result);
If you want to access HTTP by POST, call post method.
Web::post("URL", Variable of receive the result);
If you want to request with a parameter, set the parameter with the addPrameter method beforehand.
Web::addParameter(key, value);