stocks.py 215 B

123456
  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. fhc = ("FHC", 15, 335, 10)
  4. # Put all stocks in this set
  5. stocks = (fhc,)