From 8df365f652e10eba540f377db5645fb5a5d2576e Mon Sep 17 00:00:00 2001 From: Toh4iem9 Date: Sun, 5 Oct 2025 17:33:00 +0200 Subject: [PATCH] refactor: indicator color --- Indicators/MyIndicators/StochRSI_Fast_Pro.mq5 | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Indicators/MyIndicators/StochRSI_Fast_Pro.mq5 b/Indicators/MyIndicators/StochRSI_Fast_Pro.mq5 index 56a4c4c..eff6f64 100644 --- a/Indicators/MyIndicators/StochRSI_Fast_Pro.mq5 +++ b/Indicators/MyIndicators/StochRSI_Fast_Pro.mq5 @@ -13,22 +13,23 @@ #property indicator_buffers 2 // %K and %D #property indicator_plots 2 #property indicator_level1 20.0 -#property indicator_level2 80.0 +#property indicator_level2 50.0 +#property indicator_level3 80.0 #property indicator_minimum -10.0 #property indicator_maximum 110.0 //--- Plot 1: %K line #property indicator_label1 "%K" #property indicator_type1 DRAW_LINE -#property indicator_color1 clrLightSeaGreen +#property indicator_color1 clrDodgerBlue #property indicator_style1 STYLE_SOLID #property indicator_width1 1 //--- Plot 2: %D line #property indicator_label2 "%D" #property indicator_type2 DRAW_LINE -#property indicator_color2 clrRed -#property indicator_style2 STYLE_DOT +#property indicator_color2 clrCoral +#property indicator_style2 STYLE_SOLID #property indicator_width2 1 //--- Include the calculator engine ---