-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvar.py
More file actions
81 lines (72 loc) · 1.75 KB
/
Copy pathvar.py
File metadata and controls
81 lines (72 loc) · 1.75 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
crypto_list = [
"bitcoin",
"ethereum",
"litecoin",
"ripple",
"cardano",
"polkadot",
"chainlink",
"stellar",
"dogecoin",
"solana",
"quiztok",
"akropolis",
]
# Define your initial_prices dictionary here, for example:
initial_prices = {
"bitcoin": 26173,
"ethereum": 1673.04,
"litecoin": 65.05,
"ripple": 0.553369,
"cardano": 0.267979,
"polkadot": 4.52,
"chainlink": 6.2,
"stellar": 0.132189,
"dogecoin": 0.064445,
"solana": 21.99,
"quiztok": 0.00227593,
"akropolis": 0.00712927,
}
number_of_tokens = {
"bitcoin": 0.001,
"ethereum": 1.16,
"litecoin": 10,
"ripple": 60,
"cardano": 120,
"polkadot": 40,
"chainlink": 20,
"stellar": 1000,
"dogecoin": 2000,
"solana": 10,
"quiztok": 60000,
"akropolis": 60000,
}
symbols = {
"bitcoin": "BTCEUR",
"ethereum": "ETHEUR",
"litecoin": "LTCEUR",
"ripple": "XRPEUR",
"cardano": "ADAEUR",
"polkadot": "DOTEUR",
"chainlink": "LINKEUR",
"stellar": "XLMEUR",
"dogecoin": "DOGEEUR",
"solana": "SOLEUR",
# These next ones might not be as common on the Euro market, so you'll want to verify their exact symbols on Binance:
"quiztok": "QTCONEUR", # Assuming the symbol for quiztok in Euro is QTCONEUR, you might want to verify this.
"akropolis": "AKROEUR", # Assuming the symbol for akropolis in Euro is AKROEUR, you might want to verify this.
}
NEW
crypto_list = [
"quiztok",
]
# Define your initial_prices dictionary here, for example:
initial_prices = {
"quiztok": 0.00227593,
}
number_of_tokens = {
"quiztok": 5000,
}
symbols = {
"quiztok": "QTCONEUR", # Assuming the symbol for quiztok in Euro is QTCONEUR, you might want to verify this.
}