Pls help me, when i click COMPILE it say that " OrderReliable V021.mqh ca not open the progam file. so what do i do with this, Pls help me
/================================================== ===========================
#include <OrderReliable V0.2.1.mqh>
//+---------------------------------------------------+
//|Money Management |
//+---------------------------------------------------+
extern bool MoneyManagement = true; // Change to false if you want to shutdown money management controls.
// Lots = 1 will be in effect and only 1 lot will be open regardless of equity.
extern double TradeSizePercent = 10; // Change to whatever percent of equity you wish to risk.
extern double Lots = 1; // Number of lots to trade when MoneyManagement is false
double MaxLots = 100.0;// Maximum number of lots allowed by broker
//---- input parameters
extern double TakeProfit = 0;
extern double StopLoss = 60;
extern int UseTrailingStop = 0;
extern int TrailingStopType = 2; // Type 1 trails immediately, type 2 waits for move size TrailingStop before trail begins
extern double TrailingStop = 40;
extern string Sep1 = "======= General Inputs =======";
extern int SignalCandle = 1; // 0 opens and closes trades on current unclosed bar, 1 on closed bar
extern int ExitOnCross = 1; // Exit trade when signals say reverse of entry
.....
.....