From ec50fc1ebc90886d0d702ebe16d5b5a25c04464a Mon Sep 17 00:00:00 2001 From: "Bobby (aider)" Date: Wed, 12 Feb 2025 19:44:10 -0800 Subject: [PATCH] fix: Update initialize_scanner function signature to match parameter order --- src/utils/scanner_utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/utils/scanner_utils.py b/src/utils/scanner_utils.py index b4df54b..cbf64c7 100644 --- a/src/utils/scanner_utils.py +++ b/src/utils/scanner_utils.py @@ -20,7 +20,6 @@ def initialize_scanner(min_price: float, max_price: float, min_volume: int, """ print(f"\nScanning for stocks ${min_price:.2f}-${max_price:.2f} with min volume {min_volume:,}") - # Remove the get_date_range() call and use the passed parameters if not start_date or not end_date: raise ValueError("start_date and end_date must be provided")