//+------------------------------------------------------------------+ //| 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; //--- EnableSessionFilter/EnableNewsFilter/EnableRiskGuard are real inputs (Variables\Inputs.mqh), //--- consistent with every other filter's on/off toggle. EnableITF and EnableMarketDepth are gone - //--- both modules were removed 2026-08-01, see the removal notes in that file. bool EnablePAI = (AIType == AI_MLP); bool EnableCONV = (AIType == AI_CONV); bool EnableLSTM = (AIType == AI_LSTM); bool EnableHYBRID = (AIType == AI_HYBRID); //+------------------------------------------------------------------+