31 lines
1.2 KiB
MQL5
31 lines
1.2 KiB
MQL5
//+------------------------------------------------------------------+
|
|
//| Main.mqh |
|
|
//| Copyright 2025, Niquel Mendoza. |
|
|
//| https://www.mql5.com/es/users/nique_372/news |
|
|
//+------------------------------------------------------------------+
|
|
#property copyright "Copyright 2025, Niquel Mendoza."
|
|
#property link "https://www.mql5.com/es/users/nique_372/news"
|
|
#property strict
|
|
|
|
#ifndef MQLARTICLES_STRATEGY_MAIN_MQH
|
|
#define MQLARTICLES_STRATEGY_MAIN_MQH
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
//--- Core
|
|
#include "Core\\Base.mqh"
|
|
|
|
//--- Estrategia con AO
|
|
#ifdef STRATEGY_BYLEO_INCLUDE_AO_MAIN_MQH
|
|
#include "Drv\\Ao\\Main.mqh"
|
|
#endif // STRATEGY_BYLEO_INCLUDE_AO_MAIN_MQH
|
|
|
|
//--- Estrategia con filtros
|
|
#ifdef STRATEGY_BYLEO_INCLUDE_SIMPLEFILTER_MAIN_MQH
|
|
#include "Drv\\SimpleFilter\\Main.mqh"
|
|
#endif // STRATEGY_BYLEO_INCLUDE_SIMPLEFILTER_MAIN_MQH
|
|
|
|
|
|
#endif
|
|
//+------------------------------------------------------------------+
|