-
Notifications
You must be signed in to change notification settings - Fork 1
/
bot.py
298 lines (230 loc) · 9.21 KB
/
bot.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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Quick note: none of these functions were extensively tested.
Use at your own risk, maybe test a bit yourself and see what
happens with small ammounts.
'''
# Import hashlib for m5 encryption
import hashlib
# Import datetime for timestamps
import datetime
# Importing the requests library
# Used for GET and POST
import requests
# Functions:
# get_ticker(ticker) #returns info
# get_balance(ticker) #returns info
# limit_order('buy'/'sell', quantity, price, symbol) #returns orderId as string
# order_status(orderId) #returns info
# cancel_order(orderId) #returns info
# API information
apiId = ''
secretId = ''
#############################################################
#~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
##~*~*~*~*~*~*~*~*~*~ PUBLIC BOIS ~*~*~*~*~*~*~*~*~*~*~*
#~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
#############################################################
#############################################################
#~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
##~*~*~*~*~*~*~*~*~*~ GET TICKER ~*~*~*~*~*~*~*~*~*~*~*
#~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
#############################################################
#returns ticker information
def get_ticker(ticker):
symbol = ticker
# Define the api-endpoint
API_ENDPOINT = "https://api.coinbene.com/v1/market/ticker"
# Data to be sent to api
parameters = {
'symbol': symbol
}
# Send GET request and saving response as response object
r = requests.get(url = API_ENDPOINT, params = parameters)
output = r.json()
if (output['status'] == 'ok'):
return output['ticker'][0]
else:
print("ERROR: ", output['description'])
return output
#############################################################
#~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
##~*~*~*~*~*~*~*~*~*~ GET ORDERBOOK ~*~*~*~*~*~*~*~*~*##
#~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
#############################################################
#returns orderbook information
def get_orderbook(symbol):
csymbol = symbol
# Define the api-endpoint
API_ENDPOINT = "https://api.coinbene.com/v1/market/orderbook"
# Data to be sent to api
parameters = {
'symbol': csymbol
}
# Send GET request and saving response as response object
r = requests.get(url = API_ENDPOINT, params = parameters)
output = r.json()
if (output['status'] == 'ok'):
return output
else:
print("ERROR: ", output['description'])
return output
#############################################################
#~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
##~*~*~*~*~*~*~*~*~*~ PRIVATE BOIS ~*~*~*~*~*~*~*~*~*~*~*
#~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
#############################################################
# Encrypts a string into a 32-bit string using md5 hash
# Used for making the sign
def signEncrypt(s):
m = hashlib.md5(s.encode('utf-8'))
return m
#############################################################
#~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
##~*~*~*~*~*~*~*~*~*~ GET BALANCE ~*~*~*~*~*~*~*~*~*~*~*
#~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
#############################################################
# Constant
ACCOUNT = 'exchange'
# Returns balance information about inquired ticker
def get_balance():
# Time in milliseconds since the last epoch in the UTC timezone
time = int(datetime.datetime.utcnow().timestamp()*1000) - 50400000
# Creates POST sign for checking balance
string = "ACCOUNT=" + ACCOUNT + "&APIID=" + apiId
string += "&SECRET=" + secretId + "&TIMESTAMP=" + str(time)
string = string.upper()
sign = signEncrypt(string).hexdigest()
# Define the api-endpoint
API_ENDPOINT = "https://api.coinbene.com/v1/trade/balance"
# Data to be sent to api
data = {
'account': ACCOUNT,
'apiid': apiId,
'timestamp': time,
'sign': sign
}
print(data)
# Send POST request and saving response as response object
r = requests.post(url = API_ENDPOINT, data = data)
output = r.json()
return output
'''
# Function for requesting balance of (ticker)
for index in range(0,len(output['balance'])):
if (output['balance'][index]['asset'] == ticker):
return (output['balance'][index])
return "ERROR: could not find ticker"
'''
#############################################################
#~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
##~*~*~*~*~*~*~*~*~*~ PLACE ORDER ~*~*~*~*~*~*~*~*~*~*~*
#~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
#############################################################
# Place order (type(buy/sell), quantity, price, symbol(ticker))
# Returns orderID for order tracking
def limit_order(t, q, p, s):
price = p
quantity = q
symbol = s
if (t == 'buy' or t == 'BUY' or t == 'Buy'):
type1 = 'buy-limit'
elif (t == 'sell' or t == 'SELL' or t == 'Sell'):
type1 = 'sell-limit'
# Time in milliseconds since the last epoch in the UTC timezone
time = int(datetime.datetime.utcnow().timestamp()*1000) - 50400000
# Creates POST sign for placing order
string = "APIID=" + apiId
string += "&PRICE=" + str(price) + "&QUANTITY=" + str(quantity)
string += "&SECRET=" + secretId + "&SYMBOL=" + symbol
string += "&TYPE=" + type1 + "&TIMESTAMP=" + str(time)
string = string.upper()
sign = signEncrypt(string).hexdigest()
# Define the api-endpoint
API_ENDPOINT = "https://api.coinbene.com/v1/trade/order/place"
# Data to be sent to api
data = {
'apiid': apiId,
'price': price,
'quantity': quantity,
'symbol': symbol,
'type': type1,
'timestamp': time,
'sign': sign
}
# Send POST request and saving response as response object
r = requests.post(url = API_ENDPOINT, data = data)
output = r.json()
# return orderID for order tracking
if (output['status'] == 'ok'):
return output['orderid']
else:
return output
#############################################################
#~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
##~*~*~*~*~*~*~*~*~*~ ORDER STATUS ~*~*~*~*~*~*~*~*~*~*~*
#~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
#############################################################
# Returns order status information on input order ID
def order_status(o):
orderId = o
# Time in milliseconds since the last epoch in the UTC timezone
time = int(datetime.datetime.utcnow().timestamp()*1000) - 50400000
# Creates POST sign for checking order status
string = "APIID=" + apiId + "&ORDERID=" + orderId
string += "&SECRET=" + secretId + "&TIMESTAMP=" + str(time)
string = string.upper()
sign = signEncrypt(string).hexdigest()
# Define the api-endpoint
API_ENDPOINT = "https://api.coinbene.com/v1/trade/order/info"
# Data to be sent to api
data = {
'apiid': apiId,
'orderid': orderId,
'timestamp': time,
'sign': sign
}
# Send POST request and saving response as response object
r = requests.post(url = API_ENDPOINT, data = data)
output = r.json()
# return output
if (output['status'] == 'error'):
print("ERROR: ", output['decription'])
return output
else:
#this might be output as a list instead of a dict...
return output['order']
#############################################################
#~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
##~*~*~*~*~*~*~*~*~*~ CANCEL ORDER ~*~*~*~*~*~*~*~*~*~*~*
#~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
#############################################################
# Returns result information on attempted cancel order
def cancel_order(o):
orderId = o
# Time in milliseconds since the last epoch in the UTC timezone
time = int(datetime.datetime.utcnow().timestamp()*1000) - 50400000
# Creates POST sign for checking order status
string = "APIID=" + apiId + "&ORDERID=" + orderId
string += "&SECRET=" + secretId + "&TIMESTAMP=" + str(time)
string = string.upper()
sign = signEncrypt(string).hexdigest()
# Define the api-endpoint
API_ENDPOINT = "https://api.coinbene.com/v1/trade/order/cancel"
# Data to be sent to api
data = {
'apiid': apiId,
'orderid': orderId,
'timestamp': time,
'sign': sign
}
# Send POST request and saving response as response object
r = requests.post(url = API_ENDPOINT, data = data)
output = r.json()
# Return outcome of order cancel
if (output['status'] == 'ok'):
print("Cancellation Success")
else:
print("ERROR: ", output['description'])
return output