From 7967d78fe6fb58d701ea409a5b9b6bbc572ecb8a Mon Sep 17 00:00:00 2001 From: CelestialCrafter Date: Sat, 23 Sep 2023 19:55:11 -0500 Subject: [PATCH] test yapf action --- algorithms/macd.py | 1 + 1 file changed, 1 insertion(+) diff --git a/algorithms/macd.py b/algorithms/macd.py index 6a1190d..fa1abae 100755 --- a/algorithms/macd.py +++ b/algorithms/macd.py @@ -10,6 +10,7 @@ def algorithm(prices, window_sizes=[12, 26, 9]): def signal(data): macd, signal = data + # test comment # @TODO make this not stupid :3 if macd[-1] > signal[-1]: return 'sell'