From bb9d67cdb74702c932381bea8c848a765faa6990 Mon Sep 17 00:00:00 2001 From: Toh4iem9 Date: Sun, 23 Aug 2026 19:22:44 +0200 Subject: [PATCH] refactor: indicator_width --- Indicators/MyIndicators/Authors/Kaufman/KAMA_Pro.mq5 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Indicators/MyIndicators/Authors/Kaufman/KAMA_Pro.mq5 b/Indicators/MyIndicators/Authors/Kaufman/KAMA_Pro.mq5 index 532eee6..0800ffc 100644 --- a/Indicators/MyIndicators/Authors/Kaufman/KAMA_Pro.mq5 +++ b/Indicators/MyIndicators/Authors/Kaufman/KAMA_Pro.mq5 @@ -15,7 +15,7 @@ #property indicator_type1 DRAW_LINE #property indicator_color1 clrCrimson #property indicator_style1 STYLE_SOLID -#property indicator_width1 2 +#property indicator_width1 1 //--- Included Engines & Core Tools #include @@ -34,7 +34,7 @@ input ENUM_APPLIED_PRICE_HA_ALL InpSourcePrice = PRICE_CLOSE_STD; // Price input group "Visual Settings" input color InpColorKAMA = clrCrimson; // Line Color input ENUM_LINE_STYLE InpStyleKAMA = STYLE_SOLID; // Line Style -input int InpWidthKAMA = 2; // Line Width +input int InpWidthKAMA = 1; // Line Width //--- Indicator Buffers --- double BufferKAMA[];