From 859da5c78890ca240380c3d9a10ad0c71d4f25e9 Mon Sep 17 00:00:00 2001 From: Toh4iem9 Date: Mon, 13 Oct 2025 12:20:39 +0200 Subject: [PATCH] refactor: objprop style, width --- Include/MyIncludes/Session_Analysis_Calculator.mqh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Include/MyIncludes/Session_Analysis_Calculator.mqh b/Include/MyIncludes/Session_Analysis_Calculator.mqh index 499dbb7..c3e5f03 100644 --- a/Include/MyIncludes/Session_Analysis_Calculator.mqh +++ b/Include/MyIncludes/Session_Analysis_Calculator.mqh @@ -166,7 +166,7 @@ void CSessionAnalyzer::Update(const int rates_total, const datetime &time[], con string vwap_line_name = m_prefix + "VWAP_" + (string)time[i]; ObjectCreate(0, vwap_line_name, OBJ_TREND, 0, time[i-1], prev_vwap, time[i], current_vwap); ObjectSetInteger(0, vwap_line_name, OBJPROP_COLOR, m_color); - ObjectSetInteger(0, vwap_line_name, OBJPROP_WIDTH, 2); + ObjectSetInteger(0, vwap_line_name, OBJPROP_WIDTH, 1); } prev_vwap = current_vwap; } @@ -234,8 +234,8 @@ void CSessionAnalyzer::Update(const int rates_total, const datetime &time[], con ObjectMove(0, lr_line_name, 1, time[i], end_price); } ObjectSetInteger(0, lr_line_name, OBJPROP_COLOR, m_color); - ObjectSetInteger(0, lr_line_name, OBJPROP_STYLE, STYLE_DASHDOT); - ObjectSetInteger(0, lr_line_name, OBJPROP_WIDTH, 2); + ObjectSetInteger(0, lr_line_name, OBJPROP_STYLE, STYLE_SOLID); + ObjectSetInteger(0, lr_line_name, OBJPROP_WIDTH, 1); } } }