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'