-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathtrader.py
457 lines (398 loc) · 17.2 KB
/
trader.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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
"""GDAX Trading API client.
JSON client for interacting with api.gdax.com.
"""
import copy
from decimal import Decimal, InvalidOperation
import json
import logging
import time
import asyncio
import aiohttp
import async_timeout
import gdax.utils
class Trader(object):
API_URL = "https://api.gdax.com"
def __init__(self, product_id='ETH-USD', api_key=None, api_secret=None,
passphrase=None, timeout_sec=10):
self.product_id = product_id
if api_key is not None:
self.authenticated = True
self.api_key = api_key
self.api_secret = api_secret
self.passphrase = passphrase
else:
self.authenticated = False
self._clientsession = aiohttp.ClientSession()
self.session = self._clientsession.__enter__()
self.timeout_sec = timeout_sec
def __del__(self):
self.session = self._clientsession.__exit__(None, None, None)
def _auth_headers(self, path, method, body=''):
timestamp = str(time.time())
return {
'Content-Type': 'application/json',
'CB-ACCESS-SIGN': gdax.utils.get_signature(path, method, body,
timestamp,
self.api_secret),
'CB-ACCESS-TIMESTAMP': timestamp,
'CB-ACCESS-KEY': self.api_key,
'CB-ACCESS-PASSPHRASE': self.passphrase,
}
def _convert_return_fields(self, fields, decimal_fields, convert_all):
if decimal_fields is None and not convert_all:
return fields
if isinstance(fields, list):
return [self._convert_return_fields(field, decimal_fields,
convert_all)
for field in fields]
elif isinstance(fields, dict):
new_fields = {}
for k, v in fields.items():
if isinstance(v, dict):
new_fields[k] = self._convert_return_fields(
v, decimal_fields, convert_all)
elif ((decimal_fields is not None and k in decimal_fields)
or convert_all):
if isinstance(v, list):
new_fields[k] = self._convert_return_fields(
v, decimal_fields, convert_all)
else:
new_fields[k] = Decimal(v)
else:
new_fields[k] = v
return new_fields
else:
if convert_all and not isinstance(fields, int):
try:
return Decimal(fields)
except InvalidOperation:
return fields
else:
return fields
async def _get(self, path, params=None, decimal_return_fields=None,
convert_all=False, pagination=False):
if params is None:
params_copy = {}
else:
params_copy = copy.deepcopy(params)
results = []
while True:
with async_timeout.timeout(self.timeout_sec):
path_with_params = path
if params_copy:
path_with_params += '?'
path_with_params += '&'.join(
f'{k}={v}' for k, v in params_copy.items())
if self.authenticated:
headers = self._auth_headers(path_with_params,
method='GET')
else:
headers = None
async with self.session.get(self.API_URL + path_with_params,
headers=headers,
encoding='ascii') as response:
response.raise_for_status()
res = await response.json()
if pagination:
results += res
resp_headers = response.headers
if "cb-after" in resp_headers:
params_copy['after'] = resp_headers['cb-after']
else:
return self._convert_return_fields(
results, decimal_return_fields, convert_all)
else:
return self._convert_return_fields(
res, decimal_return_fields, convert_all)
async def _post(self, path, data=None, decimal_return_fields=None,
convert_all=False):
json_data = json.dumps(data)
headers = self._auth_headers(path, method='POST', body=json_data)
path_url = self.API_URL + path
with async_timeout.timeout(self.timeout_sec):
async with self.session.post(path_url,
headers=headers,
data=json_data) as response:
res = await response.json()
response.raise_for_status()
return self._convert_return_fields(
res, decimal_return_fields, convert_all)
async def _delete(self, path, data=None, decimal_return_fields=None,
convert_all=False):
json_data = json.dumps(data)
headers = self._auth_headers(path, method='DELETE', body=json_data)
path_url = self.API_URL + path
with async_timeout.timeout(self.timeout_sec):
async with self.session.delete(path_url,
headers=headers,
data=json_data) as response:
response.raise_for_status()
return await response.json()
async def get_products(self):
return await self._get(
'/products',
decimal_return_fields={'base_min_size', 'base_max_size',
'quote_increment'})
async def get_product_ticker(self, product_id=None):
return await self._get(
'/products/{}/ticker'.format(product_id or self.product_id),
decimal_return_fields={'price', 'size', 'bid', 'ask', 'volume'})
async def get_product_trades(self, product_id=None):
return await self._get(
'/products/{}/trades'.format(product_id or self.product_id),
decimal_return_fields={'price', 'size'})
async def get_product_order_book(self, product_id=None, level=1):
params = {'level': level}
return await self._get(
'/products/{}/book'.format(product_id or self.product_id),
params=params, decimal_return_fields={'bids', 'asks'},
convert_all=True)
async def get_product_historic_rates(self, product_id=None, start='',
end='', granularity=''):
payload = {}
payload["start"] = start
payload["end"] = end
payload["granularity"] = granularity
res = await self._get(
'/products/{}/candles'.format(product_id or self.product_id),
params=payload)
# NOTE: there's a bug where the API returns floats instead of strings
# here
for row in res:
for i, col in enumerate(row[1:]):
row[i + 1] = Decimal(str(col))
return res
async def get_product_24hr_stats(self, product_id=None):
return await self._get(
'/products/{}/stats'.format(product_id or self.product_id),
convert_all=True)
async def get_currencies(self):
return await self._get('/currencies',
decimal_return_fields={'min_size'})
async def get_time(self):
return await self._get('/time')
# authenticated API
async def get_account(self, account_id=''):
assert self.authenticated
return await self._get(f'/accounts/{account_id}')
async def get_account_history(self, account_id):
assert self.authenticated
return await self._get(f'/accounts/{account_id}/ledger',
pagination=True)
async def get_account_holds(self, account_id):
assert self.authenticated
return await self._get(f'/accounts/{account_id}/holds',
pagination=True)
async def buy(self, product_id=None, price=None, size=None, funds=None,
**kwargs):
assert self.authenticated
payload = {}
payload['side'] = 'buy'
payload['product_id'] = product_id or self.product_id
if price is not None:
payload['price'] = str(price)
if size is not None:
payload['size'] = str(size)
if funds is not None:
payload['funds'] = str(funds)
payload.update(kwargs)
return await self._post(
'/orders', data=payload,
decimal_return_fields={'price', 'size', 'fill_fees', 'filled_size',
'executed_value'})
async def sell(self, product_id=None, price=None, size=None, funds=None,
**kwargs):
assert self.authenticated
payload = {}
payload['side'] = 'sell'
payload['product_id'] = product_id or self.product_id
if price is not None:
payload['price'] = str(price)
if size is not None:
payload['size'] = str(size)
if funds is not None:
payload['funds'] = str(funds)
payload.update(kwargs)
return await self._post(
'/orders', data=payload,
decimal_return_fields={'price', 'size', 'fill_fees', 'filled_size',
'executed_value', 'funds',
'specified_funds'})
async def cancel_order(self, order_id):
assert self.authenticated
return await self._delete(f'/orders/{order_id}')
async def cancel_all(self, data=None, product_id=''):
assert self.authenticated
payload = {'product_id': product_id}
return await self._delete('/orders/', data=payload)
async def get_order(self, order_id):
assert self.authenticated
return await self._get(
f'/orders/{order_id}',
decimal_return_fields={'price', 'size', 'fill_fees', 'filled_size',
'executed_value', 'funds',
'specified_funds'})
async def get_orders(self):
assert self.authenticated
return await self._get(
'/orders', pagination=True,
decimal_return_fields={'price', 'size', 'fill_fees', 'filled_size',
'executed_value', 'funds',
'specified_funds'})
async def get_fills(self, order_id='', product_id=''):
assert self.authenticated
params = {}
if order_id:
params['order_id'] = order_id
if product_id:
params['product_id'] = product_id or self.product_id
return await self._get(
'/fills', params=params, pagination=True,
decimal_return_fields={'price', 'size', 'fee'})
async def get_fundings(self, status):
assert self.authenticated
params = {}
if status:
params['status'] = status
return await self._get(
'/funding', params=params, pagination=True,
decimal_return_fields={'amount', 'repaid_amount',
'default_amount'})
async def repay_funding(self, amount, currency):
assert self.authenticated
payload = {
"amount": str(amount),
"currency": currency, # example: USD
}
return await self._post('/funding/repay', data=payload)
async def margin_transfer(self, margin_profile_id, transfer_type,
currency, amount):
assert self.authenticated
payload = {
"margin_profile_id": margin_profile_id,
"type": transfer_type,
"currency": currency, # example: USD
"amount": str(amount),
}
return await self._post('/profiles/margin-transfer', data=payload,
decimal_return_fields={'amount'})
async def get_position(self):
assert self.authenticated
return await self._get(
'/position',
decimal_return_fields={'max_funding_value', 'funding_value',
'amount', 'balance', 'hold',
'funded_amount', 'default_amount', 'price',
'sell', 'size', 'funds', 'complement',
'max_size'})
async def close_position(self, repay_only=False):
assert self.authenticated
payload = {
"repay_only": repay_only
}
return await self._post('/position/close', data=payload)
async def deposit(self, amount, currency, payment_method_id):
assert self.authenticated
payload = {
"amount": str(amount),
"currency": currency,
"payment_method_id": payment_method_id,
}
return await self._post('/deposits/payment-method', data=payload,
decimal_return_fields={'amount'})
async def coinbase_deposit(self, amount, currency, coinbase_account_id):
assert self.authenticated
payload = {
"amount": str(amount),
"currency": currency,
"coinbase_account_id": coinbase_account_id,
}
return await self._post('/deposits/coinbase-account', data=payload,
decimal_return_fields={'amount'})
async def withdraw(self, amount, currency, payment_method_id):
assert self.authenticated
payload = {
"amount": str(amount),
"currency": currency,
"payment_method_id": payment_method_id,
}
return await self._post('/withdrawals/payment-method', data=payload,
decimal_return_fields={'amount'})
async def coinbase_withdraw(self, amount, currency, coinbase_account_id):
assert self.authenticated
payload = {
"amount": str(amount),
"currency": currency,
"coinbase_account_id": coinbase_account_id,
}
return await self._post('/withdrawals/coinbase', data=payload,
decimal_return_fields={'amount'})
async def crypto_withdraw(self, amount, currency, crypto_address):
assert self.authenticated
payload = {
"amount": str(amount),
"currency": currency,
"crypto_address": crypto_address
}
return await self._post('/withdrawals/crypto', data=payload,
decimal_return_fields={'amount'})
async def get_payment_methods(self):
assert self.authenticated
return await self._get('/payment-methods')
async def get_coinbase_accounts(self):
assert self.authenticated
return await self._get('/coinbase-accounts',
decimal_return_fields={'balance'})
async def create_report(self, report_type, start_date, end_date,
product_id=None, account_id=None,
report_format=None, email=None):
assert self.authenticated
payload = {
"type": report_type,
"start_date": start_date,
"end_date": end_date,
}
if report_type == 'fills':
assert product_id is not None, \
'product_id is required if report_type is fills'
elif report_type == 'account':
assert account_id is not None, \
'account_id is required if report_type is account'
else:
assert False, \
f'report_type must be one of fills or account, {report_type}' \
' given'
if product_id is not None:
payload['product_id'] = product_id
if account_id is not None:
payload['account_id'] = account_id
if report_format is not None:
payload['format'] = report_format
if email is not None:
payload['email'] = email
return await self._post('/reports', data=payload)
async def get_report(self, report_id):
assert self.authenticated
return await self._get(f'/reports/{report_id}')
async def get_trailing_volume(self):
assert self.authenticated
return await self._get('/users/self/trailing-volume',
decimal_return_fields={'exchange_volume',
'volume'})
async def main(): # pragma: no cover
trader = Trader(product_id='BTC-USD',
api_key=None,
api_secret=None,
passphrase=None,)
res = await asyncio.gather(
trader.get_products(),
trader.get_product_ticker(),
trader.get_time(),
trader.get_product_historic_rates(),
# trader.buy(type='limit', size='0.01', price='2500.12'),
)
logging.info(res)
if __name__ == "__main__": # pragma: no cover
logging.getLogger().setLevel(logging.INFO)
loop = asyncio.get_event_loop()
loop.run_until_complete(main())