Warrior_EA/Structures/TradeRecordStructure.mqh

21 lines
802 B
MQL5
Raw Permalink Normal View History

2025-05-30 16:35:54 +02:00
//+------------------------------------------------------------------+
//| Warrior_EA |
//| AnimateDread |
//| |
//+------------------------------------------------------------------+
struct TradeRecord
{
int year;
int month;
int day;
int day_of_week;
int hour;
int minutes;
string pattern;
string direction;
double entryPrice;
double exitPrice;
string result;
};
//+------------------------------------------------------------------+