Eliran79 / EASEPreditech-MQL4-Web

A module for handling WebRequest function comfortably with MQL4.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MQL4-WebRequest

A module for handling WebRequest function comfortably with MQL4.

Requirement

  • stdlib.ex4(Defult Library file)

Install

  1. Download Web.mqh
  2. Save the file to /MQL4/Include/mql4_modules/Web/Web.mqh

Usage

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);

About

A module for handling WebRequest function comfortably with MQL4.

License:MIT License


Languages

Language:MQL5 100.0%