Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 631 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 631 Bytes

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