mirror of
https://github.com/rithsila/MT5-EA-Sniper-Strategy.git
synced 2026-08-23 07:38:15 +00:00
22 lines
428 B
Plaintext
22 lines
428 B
Plaintext
/*
|
|
|
|
EA_Template.mq4
|
|
|
|
Copyright 2013-2020, Orchard Forex
|
|
https://www.orchardforex.com
|
|
|
|
Description: Basic template for framework based MQ4 expert
|
|
Uses: framework_2.02 minimum
|
|
|
|
*/
|
|
|
|
#property copyright "Copyright 2013-2020, Orchard Forex"
|
|
#property link "https://www.orchardforex.com"
|
|
#property version "1.00"
|
|
#property strict
|
|
|
|
//
|
|
// Load the common code
|
|
//
|
|
#include "EA_Template.mqh" // Remember to change this
|