From 41b243d8efb8868444cd76ea6302cbe2e0e9f491 Mon Sep 17 00:00:00 2001 From: Hannes Hansen Date: Mon, 6 May 2024 12:43:05 +0200 Subject: [PATCH] fixed paramter bug --- algo/utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/algo/utils.py b/algo/utils.py index e5206ec..d74e739 100644 --- a/algo/utils.py +++ b/algo/utils.py @@ -28,8 +28,7 @@ def __init__(self, data_path): self.current_mean, self.num_datepoints) = self.load_data(self.current_stddev, self.current_mean, - self.num_datepoints, - self.first_data_time) + self.num_datepoints) def calculate_std(self, new_value, current_stddev, current_mean, num_datepoints):