stocks.py 373 B

123456789101112
  1. # stock name, stock number, max price, min(price * drop) in B
  2. # So this means: stock name, stock # 15 (FHC), max price $335 and a > $10B drop
  3. fhg = ("FHG", 15, 335, 10)
  4. yaz = ("YAZ", 8, 60, 10)
  5. cnc = ("CNC", 10, 530, 10)
  6. wlt = ("WLT", 30, 550, 10)
  7. hrg = ("HRG", 22, 350, 10)
  8. sym = ("SYM", 16, 480, 10)
  9. # Put all stocks in this set
  10. stocks = (fhg, yaz, cnc, wlt, hrg, sym)