Foppe Hemminga 6 лет назад
Родитель
Сommit
b3129fc2c8
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      stocks.py

+ 2 - 1
stocks.py

@@ -1,6 +1,7 @@
 # stock name, stock number, max price, min(price * drop) in B
 # stock name, stock number, max price, min(price * drop) in B
 # So this means: stock name, stock # 15 (FHC), max price $335  and a > $10B drop
 # So this means: stock name, stock # 15 (FHC), max price $335  and a > $10B drop
 fhc = ("FHC", 15, 335, 10)
 fhc = ("FHC", 15, 335, 10)
+yaz = ("YAZ", 3, 60, 10)
 
 
 # Put all stocks in this set
 # Put all stocks in this set
-stocks = (fhc,)
+stocks = (fhc, yaz)