From 3a865a117a2e72440bca5b14652aa4190533a95e Mon Sep 17 00:00:00 2001 From: vlad zverzhkhovskiy Date: Mon, 29 Sep 2025 14:15:53 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BE=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D1=80=D0=B0=D1=81=D0=BF=D0=B8=D1=81=D0=B0?= =?UTF-8?q?=D0=BD=D0=B8=D1=8F=20=D1=82=D0=BE=D1=80=D0=B3=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Exchange/Utils/ExchangeScheduler.cs | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/KLHZ.Trader.Core/Exchange/Utils/ExchangeScheduler.cs b/KLHZ.Trader.Core/Exchange/Utils/ExchangeScheduler.cs index 8efe354..3da9f71 100644 --- a/KLHZ.Trader.Core/Exchange/Utils/ExchangeScheduler.cs +++ b/KLHZ.Trader.Core/Exchange/Utils/ExchangeScheduler.cs @@ -4,17 +4,16 @@ namespace KLHZ.Trader.Core.Exchange.Utils { internal static class ExchangeScheduler { - private readonly static TimeOnly _openTimeMain = new(6, 10); - private readonly static TimeOnly _closeTimeMain = new(20, 45); - + private readonly static TimeOnly _openTimeMain = new(6, 15); + private readonly static TimeOnly _closeTimeMain = new(20, 00); private readonly static TimeOnly _openTimeHoliday = new(7, 10); private readonly static TimeOnly _closeTimeHoliday = new(17, 45); - private readonly static TimeOnly _firstClearingStart = new(10, 45); - private readonly static TimeOnly _firstClearingEnd = new(11, 10); + private readonly static TimeOnly _firstClearingStart = new(10, 40); + private readonly static TimeOnly _firstClearingEnd = new(11, 20); - private readonly static TimeOnly _mainClearingStart = new(15, 45); - private readonly static TimeOnly _mainClearingEnd = new(16, 10); + private readonly static TimeOnly _mainClearingStart = new(15, 40); + private readonly static TimeOnly _mainClearingEnd = new(16, 20); internal static ExchangeState GetCurrentState(DateTime? currentDt = null) {