AiDataGenByLeo/GenericData/Data/Def.mqh
Nique_372 1b131142ef
2026-07-05 20:53:08 -05:00

54 lines
1.9 KiB
MQL5

//+------------------------------------------------------------------+
//| 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
#ifndef AIDATAGENBYLEO_GENERIC_DATA_DEF_MQH
#define AIDATAGENBYLEO_GENERIC_DATA_DEF_MQH
//+------------------------------------------------------------------+
//| Include |
//+------------------------------------------------------------------+
//-- ENum reg
// ict
#include <TSN\\ICTLibrary\\EnumReg.mqh>
// general
#include <TSN\\MQLArticles\\Utils\\EnumReg.mqh>
//--- Data
// Noticias
#include <TSN\\FastNL\\CentralBank.mqh>
#include <TSN\\FastNL\\BuenoMalo.mqh>
// 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
#define AIDATA_LEO_FEATURE_FIRST CNewsEventsHook
#endif // AIDATA_LEO_FEATURE_FIRST
// Ict
#include <TSN\\ICTLibrary\\Pool.mqh>
// MQLArticles ind
#include <TSN\\MQLArticles\\Indicators\\Main.mqh>
// NN simple
#include <TSN\\AiModels\\SLR.mqh>
//--- Clase a heredar
#include "..\\Factory\\Main.mqh"
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
#endif // AIDATAGENBYLEO_GENERIC_DATA_DEF_MQH
//+------------------------------------------------------------------+