29 lines
1.4 KiB
MQL4
29 lines
1.4 KiB
MQL4
//+------------------------------------------------------------------+
|
|
//| Sender.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 AIDATATASKRUNNER_BACKEND_TLGM_SENDER_MQH
|
|
#define AIDATATASKRUNNER_BACKEND_TLGM_SENDER_MQH
|
|
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
//--- Clase base para enviar eventos (usuario modifica un boton se le envia al bot de telegram)
|
|
#include <TSN\\AiFullTab\\TlgSender.mqh>
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
//--- Aqui se ubica el path al bot de telegram qeu el base ejecutara
|
|
#define EXPERT_TELEGRAM_PATH "Experts\\Shared Projects\\AiDataTaskRuner\\Backend\\Tlgm\\TlgBot.ex5"
|
|
|
|
|
|
#endif // AIDATATASKRUNNER_BACKEND_TLGM_SENDER_MQH
|
|
//+------------------------------------------------------------------+
|