From 7e8ab8de7a7233eeede988e022319b6b3b4d5265 Mon Sep 17 00:00:00 2001 From: Adithyo Dewangga Wijaya <45558534+adithyodw@users.noreply.github.com> Date: Sat, 28 Feb 2026 15:49:37 +0800 Subject: [PATCH] Update TOL LANGIT Neural Quant Advisor.mq5 --- TOL LANGIT Neural Quant Advisor.mq5 | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/TOL LANGIT Neural Quant Advisor.mq5 b/TOL LANGIT Neural Quant Advisor.mq5 index f5853b5..75961bf 100644 --- a/TOL LANGIT Neural Quant Advisor.mq5 +++ b/TOL LANGIT Neural Quant Advisor.mq5 @@ -18,7 +18,7 @@ input int InpStartHour = 0; // Start Hour (0-23) input int InpEndHour = 23; // End Hour (0-23) input string s1 = "======= QUANTITATIVE CORE ======="; -input int InpEMA_Period = 200; // Macro Trend Filter (EMA) +input int InpEMA_Period = 100; // Macro Trend Filter (EMA) input int InpADX_Period = 14; // Volatility Filter (ADX) input double InpADX_Min = 20.0; // Minimum ADX to allow trading input int InpBB_Period = 20; // Z-Score Basis (Bollinger) @@ -26,13 +26,13 @@ input double InpZScore_Level = 1.0; // Stat-Sig Breakout Level (0.5 - 2.0) input int InpRSI_Period = 14; // Momentum Filter (RSI) input string s2 = "======= RISK & EXECUTION ======="; -input double InpRiskPercent = 1.0; // Risk Per Trade (%) -input double InpSL_ATR_Mult = 2.0; // Stop Loss (ATR Multiplier) -input double InpTP_ATR_Mult = 3.5; // Take Profit (ATR Multiplier) +input double InpRiskPercent = 5.0; // Risk Per Trade (%) +input double InpSL_ATR_Mult = 3.5; // Stop Loss (ATR Multiplier) +input double InpTP_ATR_Mult = 10; // Take Profit (ATR Multiplier) input double InpMaxSpreadPoints = 50.0; // Max Spread in Points (e.g. 50 = 5.0 pips) -input double InpDailyTargetPct = 1.0; // Daily Profit Target (%) -input double InpDailyLossPct = 1.0; // Daily Loss Limit (%) -input int InpMaxTradesDay = 5; // Max Trades Per Session +input double InpDailyTargetPct = 30; // Daily Profit Target (%) +input double InpDailyLossPct = 20; // Daily Loss Limit (%) +input int InpMaxTradesDay = 4; // Max Trades Per Session input long InpMagic = 888111; //--- GLOBAL VARIABLES @@ -211,3 +211,4 @@ void CloseAllPositions() { } } } +