From f1a94e4df7799a39562081196ce2c4d028626e73 Mon Sep 17 00:00:00 2001 From: Bell Date: Wed, 11 Mar 2026 19:57:01 +0700 Subject: [PATCH] =?UTF-8?q?SL=20d=C6=B0=E1=BB=9Bi=20barA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Experts/SimpleFVG/FVG.mqh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Experts/SimpleFVG/FVG.mqh b/Experts/SimpleFVG/FVG.mqh index 4c1668c..4142090 100644 --- a/Experts/SimpleFVG/FVG.mqh +++ b/Experts/SimpleFVG/FVG.mqh @@ -200,7 +200,7 @@ void ScanForNewFVGs() if(gapRatio >= minGapVsBody && !FVGAlreadyTracked(fvgTime, FVG_BULLISH)) { - double slRef = candleB_Low; // bar2.low + double slRef = candleA_Low; // SL dưới bar A AddFVGZone(FVG_BULLISH, candleC_Low, candleA_High, slRef, fvgTime); } } @@ -215,7 +215,7 @@ void ScanForNewFVGs() if(gapRatio >= minGapVsBody && !FVGAlreadyTracked(fvgTime, FVG_BEARISH)) { - double slRef = candleB_High; // bar2.high + double slRef = candleA_High; // SL trên bar A AddFVGZone(FVG_BEARISH, candleA_Low, candleC_High, slRef, fvgTime); } }