44 lines
2 KiB
MQL5
44 lines
2 KiB
MQL5
//+------------------------------------------------------------------+
|
|
//| All.mqh |
|
|
//| Copyright 2026, Niquel Mendoza. |
|
|
//| https://www.mql5.com/es/users/nique_372 |
|
|
//+------------------------------------------------------------------+
|
|
#property copyright "Copyright 2026, Niquel Mendoza."
|
|
#property link "https://www.mql5.com/es/users/nique_372"
|
|
#property strict
|
|
|
|
#ifndef FULLMT5MCPBYLEO_SRC_ALL_MQH
|
|
#define FULLMT5MCPBYLEO_SRC_ALL_MQH
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| Graphics |
|
|
//+------------------------------------------------------------------+
|
|
#include "Graphics\\Objects.mqh"
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| Charts |
|
|
//+------------------------------------------------------------------+
|
|
#include "Charts\\Charts.mqh"
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| Data |
|
|
//+------------------------------------------------------------------+
|
|
#include "Data\\Symbol.mqh"
|
|
#include "Data\\MarketData.mqh"
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| Trade |
|
|
//+------------------------------------------------------------------+
|
|
#include "Trade\\Positions.mqh"
|
|
#include "Trade\\Orders.mqh"
|
|
#include "Trade\\Deals.mqh"
|
|
#include "Trade\\Trade.mqh"
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| Complex |
|
|
//+------------------------------------------------------------------+
|
|
#include "Complex\\Complex.mqh"
|
|
#include "Complex\\Logs.mqh"
|
|
|
|
//+------------------------------------------------------------------+
|
|
#endif // FULLMT5MCPBYLEO_SRC_ALL_MQH
|