stocks.py 1.2 KB

1234567891011121314151617181920212223
  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. d_fhg = ("FHG", 15, 335, 10, "DROP", "703590842170081360")
  4. d_yaz = ("YAZ", 8, 60, 10, "DROP", "703592171445551256")
  5. d_cnc = ("CNC", 10, 480, 10, "DROP", "703590841939132477")
  6. d_wlt = ("WLT", 30, 550, 10, "DROP", "703590836662698025")
  7. d_hrg = ("HRG", 22, 355, 10, "DROP", "705080339772473486")
  8. d_sym = ("SYM", 16, 480, 10, "DROP", "703590842006503505")
  9. d_slag = ("SLAG", 4, 190, 10, "DROP", "703590847220023338")
  10. d_grn = ("GRN", 6, 230, 10, "DROP", "703590843717648885")
  11. d_tcp = ("TCP", 13, 240, 10, "DROP", "703590842673266718")
  12. d_tcb = ("TCB", 2, 420, 10, "DROP", "703590838177103952")
  13. d_tct = ("TCT", 9, 195, 10, "DROP", "703590846762844160")
  14. # FORECAST
  15. # Forecast turns >= good from <= average
  16. # Name, stock_id, max price, min available
  17. f_fhg = ("FHG", 15, 335, 0, "FORECAST", "703590842170081360")
  18. f_wlt = ("WLT", 30, 555, 0, "FORECAST", "703590836662698025")
  19. f_sym = ("SYM", 16, 485, 0, "FORECAST", "703590842006503505")
  20. # Put all stocks in this set
  21. stocks = (d_fhg, d_yaz, d_cnc, d_wlt, d_hrg, d_sym, d_slag, d_grn, d_tcp, d_tcb, f_fhg, f_wlt, f_sym)