34 lines
1.3 KiB
MQL5
34 lines
1.3 KiB
MQL5
|
|
//+------------------------------------------------------------------+
|
||
|
|
//| Global.mqh |
|
||
|
|
//| Copyright 2025, Niquel Mendoza. |
|
||
|
|
//| https://www.mql5.com/es/users/nique_372 |
|
||
|
|
//+------------------------------------------------------------------+
|
||
|
|
#property copyright "Copyright 2025, Niquel Mendoza."
|
||
|
|
#property link "https://www.mql5.com/es/users/nique_372"
|
||
|
|
#property strict
|
||
|
|
|
||
|
|
//+------------------------------------------------------------------+
|
||
|
|
//| |
|
||
|
|
//+------------------------------------------------------------------+
|
||
|
|
#include <ICT\\Consolidacion\\Range.mqh>
|
||
|
|
|
||
|
|
//---
|
||
|
|
CNewBarManager bar_manager;
|
||
|
|
|
||
|
|
//+------------------------------------------------------------------+
|
||
|
|
//| |
|
||
|
|
//+------------------------------------------------------------------+
|
||
|
|
class CGlobal
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
CGlobal(void)
|
||
|
|
{
|
||
|
|
ICTGlobalManager::OnInitEvent(&bar_manager);
|
||
|
|
}
|
||
|
|
~CGlobal(void)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
};
|
||
|
|
//+------------------------------------------------------------------+
|
||
|
|
CGlobal g_global;
|
||
|
|
//+------------------------------------------------------------------+
|