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); } }