Romasan
Местный знаток
Почему на C++, а не на mq4...наверно, чтоб никто не усомнился в его мощи...C++://==== Input parameters input double Lots = 0.01; // Fixed lot size input bool Auto_Lot = true; // Enable auto lot calculation based on risk input double RiskPercent = 6; // Risk per trade in percent input double MaxDailyDrawdown = 25.0; // Maximum daily drawdown percent input int ATR_Period = 31; // ATR period for SL/TP calculation input double ATR_SL_Mult = 9.0; // ATR multiplier for stop loss input double ATR_TP_Mult = 11.0; // ATR multiplier for take profit input int LookbackBars = 103; // Number of bars to look back for liquidity zones input int ZoneWidthPoints = 303; // Width of liquidity zones in points input int CooldownMinutes = 1; // Cooldown time between trades in minutes input int Magic = 740115; // Magic number for EA trades input double MaxSpreadPoints = 30; // Maximum allowed spread in points input bool UseTimeFilter = false; // Enable trading time filter input int StartHour = 7; // Start hour for trading input int EndHour = 22; // End hour for trading input bool EnableAI = true; // Enable MLP neural network input string WeightsFile = "ALH_AI_weights_v3.bin"; // Neural network weights file input bool OnlineLearn = true; // Enable online learning input double LR = 0.223; // Learning rate for online learning input int MinBars = 200; // Minimum bars required to start trading input bool Trailling = true; // Enable trailing stop input double TRAIL_ATR_MULT = 6.0; // ATR multiplier for trailing stop input int MaxPositions = 3; // Maximum open positions




