From 0c3dd915a267955f8294da383066273d7242ddb5 Mon Sep 17 00:00:00 2001 From: MeridianAlgo Date: Mon, 4 May 2026 20:00:48 -0500 Subject: [PATCH] Apply suggested fix to src/utils/time.ts from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- src/utils/time.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/time.ts b/src/utils/time.ts index 43210e1..554c866 100644 --- a/src/utils/time.ts +++ b/src/utils/time.ts @@ -245,7 +245,7 @@ export class TimeUtils { while (count < days) { result = this.addDays(result, 1); - if (this.isMarketOpen(result)) { + if (this.isTradingDay(result)) { count++; } }