1.5.1 • Published 1 year ago

mql-simplify v1.5.1

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

MQL Simplify

A collection of classes to simplify common mql 5 implementations to many different uses.

Instalation

Initialize npm directory

Inside your mql project directory run the follow command:

npm init

Add compile script on package.json

  "scripts": {
    "compile": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./node_modules/mql-simplify/compile.ps1"
  },

Install package from npm

npm install mql-simplify --save

Example of usage:

#include "node_modules/mql-simplify/Graphic.mqh"

CHorizontalLine exampleLine;

int OnInit() {
  //Plot a default line on chart
  exampleLine.Create(); 
  return (INIT_SUCCEEDED);
}

void OnDeinit(const int reason) {
  //Remove the exampleLine from chart 
  exampleLine.Destroy();
}
1.5.1

1 year ago

1.5.0

1 year ago

1.4.6

2 years ago

1.4.5

2 years ago

1.4.4

2 years ago

1.4.3

2 years ago

1.4.2

2 years ago

1.4.1

2 years ago

1.3.3

3 years ago

1.3.2

3 years ago

1.4.0

2 years ago

1.3.1

3 years ago

1.3.0

3 years ago

1.2.2

3 years ago

1.2.1

3 years ago

1.2.0

3 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago