From 062a1b4a4687b5b58acbb44d25cdcfbe0d33f9af Mon Sep 17 00:00:00 2001 From: Toh4iem9 Date: Thu, 6 Nov 2025 14:42:37 +0100 Subject: [PATCH] refactor: indicator_color, indicator_style --- .../Ehlers/4_Channels_and_Bands/Ehlers_Bands_Pro.mq5 | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Indicators/MyIndicators/Authors/Ehlers/4_Channels_and_Bands/Ehlers_Bands_Pro.mq5 b/Indicators/MyIndicators/Authors/Ehlers/4_Channels_and_Bands/Ehlers_Bands_Pro.mq5 index 531b889..7d1f902 100644 --- a/Indicators/MyIndicators/Authors/Ehlers/4_Channels_and_Bands/Ehlers_Bands_Pro.mq5 +++ b/Indicators/MyIndicators/Authors/Ehlers/4_Channels_and_Bands/Ehlers_Bands_Pro.mq5 @@ -13,14 +13,16 @@ #property indicator_label1 "Upper" #property indicator_type1 DRAW_LINE -#property indicator_color1 clrBlue +#property indicator_color1 clrGray +#property indicator_style1 STYLE_SOLID #property indicator_label2 "Lower" #property indicator_type2 DRAW_LINE -#property indicator_color2 clrBlue +#property indicator_color2 clrGray +#property indicator_style2 STYLE_SOLID #property indicator_label3 "Middle" #property indicator_type3 DRAW_LINE -#property indicator_color3 clrBlue -#property indicator_style3 STYLE_DOT +#property indicator_color3 clrGray +#property indicator_style3 STYLE_SOLID // We need the smoother enum from this file #include