AiDataGenByLeo/GenericData/Data/Def.mqh

54 lines
1.9 KiB
MQL5
Raw Permalink Normal View History

2026-02-04 12:01:29 -05:00
//+------------------------------------------------------------------+
//| Def.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
2026-02-05 11:53:16 -05:00
#ifndef AIDATAGENBYLEO_GENERIC_DATA_DEF_MQH
#define AIDATAGENBYLEO_GENERIC_DATA_DEF_MQH
2026-02-04 12:01:29 -05:00
//+------------------------------------------------------------------+
//| Include |
//+------------------------------------------------------------------+
2026-07-05 20:53:08 -05:00
//-- ENum reg
// ict
#include <TSN\\ICTLibrary\\EnumReg.mqh>
// general
#include <TSN\\MQLArticles\\Utils\\EnumReg.mqh>
2026-02-04 12:01:29 -05:00
//--- Data
2026-02-05 09:06:13 -05:00
// Noticias
2026-04-20 18:26:47 -05:00
#include <TSN\\FastNL\\CentralBank.mqh>
2026-07-05 20:53:08 -05:00
#include <TSN\\FastNL\\BuenoMalo.mqh>
2026-04-21 09:24:31 -05:00
2026-02-26 12:15:45 -05:00
// La idea con esto es que ahora como minimo requerimos CNewsEventsHook
// El usuario quizas pueda definir mas clases herederas pero la clase debera de heredar como minimo de
// CNewsEventsHoo, por defecto se hereda de :CNewsEventsHook
#ifndef AIDATA_LEO_FEATURE_FIRST
2026-02-05 11:53:16 -05:00
#define AIDATA_LEO_FEATURE_FIRST CNewsEventsHook
2026-02-26 12:15:45 -05:00
#endif // AIDATA_LEO_FEATURE_FIRST
2026-02-05 09:06:13 -05:00
// Ict
2026-04-20 18:26:47 -05:00
#include <TSN\\ICTLibrary\\Pool.mqh>
2026-02-05 09:06:13 -05:00
2026-04-20 18:26:47 -05:00
// MQLArticles ind
#include <TSN\\MQLArticles\\Indicators\\Main.mqh>
2026-02-05 09:06:13 -05:00
// NN simple
2026-04-20 18:26:47 -05:00
#include <TSN\\AiModels\\SLR.mqh>
2026-02-04 12:01:29 -05:00
//--- Clase a heredar
2026-04-20 18:26:47 -05:00
#include "..\\Factory\\Main.mqh"
2026-02-04 12:01:29 -05:00
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
2026-02-05 11:53:16 -05:00
#endif // AIDATAGENBYLEO_GENERIC_DATA_DEF_MQH
//+------------------------------------------------------------------+