14 lines
419 B
MQL5
14 lines
419 B
MQL5
|
#property copyright "Copyright 2020, BeazTrade."
|
||
|
#property link "https://www.beaztrade.com"
|
||
|
#property description "BeazGrid Best Trading Strategy for serious traders"
|
||
|
#property icon "Files\\mql5.ico"
|
||
|
#property version "1.0"
|
||
|
//Ici on charge le fichier mql4 ou 5 des futurs class
|
||
|
|
||
|
#ifdef __MQL5__
|
||
|
#include <Trade/Trade.mqh>
|
||
|
#else
|
||
|
#property strict
|
||
|
#include "Include/MQL4/Trade/Trade.mqh"
|
||
|
#endif
|