|
@@ -1,15 +1,22 @@
|
|
|
# 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
|
|
|
-fhg = ("FHG", 15, 335, 10, "DROP")
|
|
|
|
|
-yaz = ("YAZ", 8, 60, 10, "DROP")
|
|
|
|
|
-cnc = ("CNC", 10, 480, 10, "DROP")
|
|
|
|
|
-wlt = ("WLT", 30, 550, 10, "DROP")
|
|
|
|
|
-hrg = ("HRG", 22, 335, 10, "DROP")
|
|
|
|
|
-sym = ("SYM", 16, 480, 10, "DROP")
|
|
|
|
|
-slag = ("SLAG", 4, 190, 10, "DROP")
|
|
|
|
|
-grn = ("GRN", 6, 230, 10, "DROP")
|
|
|
|
|
-tcp = ("TCP", 13, 240, 10, "DROP")
|
|
|
|
|
-tcb = ("TCB", 2, 420, 10, "DROP")
|
|
|
|
|
|
|
+d_fhg = ("FHG", 15, 335, 10, "DROP")
|
|
|
|
|
+d_yaz = ("YAZ", 8, 60, 10, "DROP")
|
|
|
|
|
+d_cnc = ("CNC", 10, 480, 10, "DROP")
|
|
|
|
|
+d_wlt = ("WLT", 30, 550, 10, "DROP")
|
|
|
|
|
+d_hrg = ("HRG", 22, 335, 10, "DROP")
|
|
|
|
|
+d_sym = ("SYM", 16, 480, 10, "DROP")
|
|
|
|
|
+d_slag = ("SLAG", 4, 190, 10, "DROP")
|
|
|
|
|
+d_grn = ("GRN", 6, 230, 10, "DROP")
|
|
|
|
|
+d_tcp = ("TCP", 13, 240, 10, "DROP")
|
|
|
|
|
+d_tcb = ("TCB", 2, 420, 10, "DROP")
|
|
|
|
|
+
|
|
|
|
|
+# FORECAST
|
|
|
|
|
+# Forecast turns >= good from <= average
|
|
|
|
|
+# Name, stock_id, max price, min available
|
|
|
|
|
+f_fhg = ("FHG", 15, 335, 0, "FORECAST")
|
|
|
|
|
+f_wlt = ("WLT", 30, 555, 0, "FORECAST")
|
|
|
|
|
+f_sym = ("SYM", 16, 485, 0, "FORECAST")
|
|
|
|
|
|
|
|
# Put all stocks in this set
|
|
# Put all stocks in this set
|
|
|
-stocks = (fhg, yaz, cnc, wlt, hrg, sym, slag, grn, tcp, tcb)
|
|
|
|
|
|
|
+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)
|