AiDataTaskRuner/Backend/Tlgm/Sender.mqh

29 lines
1.4 KiB
MQL5
Raw Permalink Normal View History

2026-03-18 08:46:51 -05:00
//+------------------------------------------------------------------+
2026-03-17 16:38:37 -05:00
//| 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
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
2026-04-01 12:33:57 -05:00
//--- Clase base para enviar eventos (usuario modifica un boton se le envia al bot de telegram)
2026-04-17 17:26:58 -05:00
#include <TSN\\AiFullTab\\TlgSender.mqh>
2026-03-18 08:46:51 -05:00
2026-03-17 16:50:48 -05:00
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
2026-04-01 12:33:57 -05:00
//--- Aqui se ubica el path al bot de telegram qeu el base ejecutara
2026-03-17 16:50:48 -05:00
#define EXPERT_TELEGRAM_PATH "Experts\\Shared Projects\\AiDataTaskRuner\\Backend\\Tlgm\\TlgBot.ex5"
2026-03-18 08:46:51 -05:00
#endif // AIDATATASKRUNNER_BACKEND_TLGM_SENDER_MQH
//+------------------------------------------------------------------+