Skip to content

Commit ab8ce8c

Browse files
author
Siddharta Govindaraj
committed
Extract Method - step 1
1 parent 1d6a590 commit ab8ce8c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

stock_alerter/stock.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ def is_increasing_trend(self):
3434
return self.price_history[-3].price < \
3535
self.price_history[-2].price < self.price_history[-1].price
3636

37+
def _get_closing_price_list(self, on_date, num_days):
38+
pass
39+
3740
def get_crossover_signal(self, on_date):
3841
closing_price_list = []
3942
NUM_DAYS = self.LONG_TERM_TIMESPAN + 1

0 commit comments

Comments
 (0)