From 4dff62986195923d0c0aa23c6ca7c9d9ee2d8496 Mon Sep 17 00:00:00 2001 From: lunaticbum Date: Mon, 9 Feb 2026 15:38:12 +0900 Subject: [PATCH] .. --- src/main/kotlin/service/AutoTradingManager.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/service/AutoTradingManager.kt b/src/main/kotlin/service/AutoTradingManager.kt index 7b105d8..5805f14 100644 --- a/src/main/kotlin/service/AutoTradingManager.kt +++ b/src/main/kotlin/service/AutoTradingManager.kt @@ -81,7 +81,8 @@ object AutoTradingManager { // [프로세스 1] 장 마감 및 잔고 체크 val now = LocalTime.now(ZoneId.of("Asia/Seoul")) - if (now.isAfter(LocalTime.of(15, 30)) && now.isBefore(LocalTime.of(15, 30))) { + //&& now.isBefore(LocalTime.of(15, 30)) + if (now.isAfter(LocalTime.of(15, 30)) ) { executeClosingLiquidation(tradeService) return@withTimeout }