16 lines
929 B
MQL5
16 lines
929 B
MQL5
|
//+------------------------------------------------------------------+
|
||
|
//| Warrior_EA |
|
||
|
//| AnimateDread |
|
||
|
//| |
|
||
|
//+------------------------------------------------------------------+
|
||
|
string eaName = "Warrior_EA";
|
||
|
string tableschema = "year INTEGER, month INTEGER, day INTEGER, dayOfWeek INTEGER, hour INTEGER, minutes INTEGER, pattern STRING, direction STRING, entryPrice DOUBLE, exitPrice DOUBLE, result STRING";
|
||
|
bool IsBacktesting = false;
|
||
|
bool EnableITF = true;
|
||
|
bool EnableSessionFilter = true;
|
||
|
bool EnableNewsFilter = true;
|
||
|
bool EnablePAI = (AIType == 0 || AIType == 3);
|
||
|
bool EnableCONV = (AIType == 1 || AIType == 3);
|
||
|
bool EnableLSTM = (AIType == 2 || AIType == 3);
|
||
|
//+------------------------------------------------------------------+
|