38 lines
1.7 KiB
MQL5
38 lines
1.7 KiB
MQL5
//+------------------------------------------------------------------+
|
|
//| Defines.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
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
#include <StrategyBase\\StrategyBase.mqh>
|
|
#include <ICTLibraryEasy\\Main.mqh>
|
|
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
CFvgBar g_fvg;
|
|
CBosChoch g_bos_choch;
|
|
CTradingSession g_sesion;
|
|
CRiskManagemet* risk;
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
#define S_FLAG_DIRECION_SELL 1
|
|
#define S_FLAG_DIRECION_BUY 2
|
|
#define S_FLAG_DEZPLAZAMIENTO_HECHO 4
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
typedef bool (*CEstrategia_FuncBos)();
|
|
|
|
|
|
//+------------------------------------------------------------------+
|