From af4b79ade8a957197f3c27a5cf0d21c4653232d8 Mon Sep 17 00:00:00 2001 From: Bell Date: Wed, 11 Mar 2026 16:21:51 +0700 Subject: [PATCH] Label drawing --- Experts/SimpleFVG/Drawing.mqh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Experts/SimpleFVG/Drawing.mqh b/Experts/SimpleFVG/Drawing.mqh index 2d42536..ad970e8 100644 --- a/Experts/SimpleFVG/Drawing.mqh +++ b/Experts/SimpleFVG/Drawing.mqh @@ -169,7 +169,7 @@ void DrawInfoPanel() clrSilver, 10); //--- Row 2: Trend status --- - DrawLabel(EA_PREFIX + "PNL_TREND", 12, 44, + DrawLabel(EA_PREFIX + "PNL_TREND", 12, 52, StringFormat("Trend: %s | EMA%d = %.2f | EMA%d = %.2f", trendText, InpEMAFastPeriod, g_EMAFastValue, @@ -177,7 +177,7 @@ void DrawInfoPanel() trendColor, 9); //--- Row 3: FVG counts --- - DrawLabel(EA_PREFIX + "PNL_FVG", 12, 66, + DrawLabel(EA_PREFIX + "PNL_FVG", 12, 82, StringFormat("FVG Active: %d Bull + %d Bear | Mitigated: %d", bullCount, bearCount, mitigCount), clrWheat, 9);