21 lines
802 B
MQL5
21 lines
802 B
MQL5
|
//+------------------------------------------------------------------+
|
||
|
//| 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;
|
||
|
};
|
||
|
//+------------------------------------------------------------------+
|