Initial MQL5 EA Project

This commit is contained in:
peter
2026-05-27 12:32:26 -04:00
commit 2682cfdca1
12 changed files with 1475 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
//+------------------------------------------------------------------+
//| Signal.mqh - Trade signal enumeration |
//| Defines possible signals from strategy |
//+------------------------------------------------------------------+
#ifndef __SIGNAL_MQH__
#define __SIGNAL_MQH__
enum E_SIGNAL
{
SIGNAL_NONE = 0, // No signal
SIGNAL_BUY = 1, // Buy signal
SIGNAL_SELL = -1 // Sell signal
};
#endif //__SIGNAL_MQH__