From f3b87bcf90574bceaf81b539504191b5bc921d76 Mon Sep 17 00:00:00 2001 From: Bell Date: Thu, 11 Dec 2025 23:58:29 +0700 Subject: [PATCH] Update Finding InternalFVGs --- Experts/EA_ICT_v2.mq5 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Experts/EA_ICT_v2.mq5 b/Experts/EA_ICT_v2.mq5 index 1cc0bb6..0fe6052 100644 --- a/Experts/EA_ICT_v2.mq5 +++ b/Experts/EA_ICT_v2.mq5 @@ -1599,7 +1599,7 @@ void DrawInternalFVGMatches(string sym, ENUM_TIMEFRAMES tf, datetime sweep_time, for(int i=0; i= break_time) continue; // đảm bảo timeC strictly giữa sweep & break + if(tc < sweep_time || tc > break_time) continue; // đảm bảo timeC strictly giữa sweep & break double top = tops[i]; double bottom = bottoms[i]; @@ -1623,7 +1623,7 @@ void DrawInternalFVGMatches(string sym, ENUM_TIMEFRAMES tf, datetime sweep_time, // set style similar DrawFVG uint fill_alpha = 80; - uint color_fill = (types[i] == 1) ? MakeARGB((int)fill_alpha, clrDodgerBlue) : MakeARGB((int)fill_alpha, clrCrimson); + uint color_fill = (types[i] == 1) ? MakeARGB((int)fill_alpha, C'229,255,30') : MakeARGB((int)fill_alpha, clrCrimson); uint col_border = MakeARGB(0, clrBlack); ObjectSetInteger(0, nm, OBJPROP_SELECTABLE, false);