forked from connor-create/wsbtrades
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrade_models.py
26 lines (23 loc) · 1.11 KB
/
trade_models.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
############################################################################
# update these here to change the variables of the amazing trading algorithm
############################################################################
# positive_points will contain positive phrases with point values to add
# legends = (phrase to contain, must also contain, positive point value)
positive_points = (("💎", "", 1),
("🚀", "", 1),
("🦍", "", 1),
("✊", "💎", 1),
("👐", "💎", 1),
(" buying ", "I'm", 4),
(" holding ", "I'm", 4),
("fuck the rich", "", 4),
("to the moon", "", 4),
("to the sun", "", 8),
(" buy ", "", 2),
(" hold ", "", 1),
(" never sell ", "", 10),
(" winning ", "", 2),
(" cum ", "", 4),
(" orbit ", "", 4),
(" profit ", "", 2),
("i like the stock", "", 10))