forked from ccxt/ccxt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoinspot.py
More file actions
154 lines (142 loc) · 5.72 KB
/
Copy pathcoinspot.py
File metadata and controls
154 lines (142 loc) · 5.72 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
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
# -*- coding: utf-8 -*-
# PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
# https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
from ccxt.base.exchange import Exchange
import hashlib
from ccxt.base.errors import ExchangeError
from ccxt.base.errors import AuthenticationError
from ccxt.base.errors import NotSupported
class coinspot (Exchange):
def describe(self):
return self.deep_extend(super(coinspot, self).describe(), {
'id': 'coinspot',
'name': 'CoinSpot',
'countries': ['AU'], # Australia
'rateLimit': 1000,
'has': {
'CORS': False,
'createMarketOrder': False,
},
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/28208429-3cacdf9a-6896-11e7-854e-4c79a772a30f.jpg',
'api': {
'public': 'https://www.coinspot.com.au/pubapi',
'private': 'https://www.coinspot.com.au/api',
},
'www': 'https://www.coinspot.com.au',
'doc': 'https://www.coinspot.com.au/api',
},
'api': {
'public': {
'get': [
'latest',
],
},
'private': {
'post': [
'orders',
'orders/history',
'my/coin/deposit',
'my/coin/send',
'quote/buy',
'quote/sell',
'my/balances',
'my/orders',
'my/buy',
'my/sell',
'my/buy/cancel',
'my/sell/cancel',
],
},
},
'markets': {
'BTC/AUD': {'id': 'BTC', 'symbol': 'BTC/AUD', 'base': 'BTC', 'quote': 'AUD'},
'LTC/AUD': {'id': 'LTC', 'symbol': 'LTC/AUD', 'base': 'LTC', 'quote': 'AUD'},
'DOGE/AUD': {'id': 'DOGE', 'symbol': 'DOGE/AUD', 'base': 'DOGE', 'quote': 'AUD'},
},
})
def fetch_balance(self, params={}):
response = self.privatePostMyBalances()
result = {'info': response}
if 'balance' in response:
balances = response['balance']
currencies = list(balances.keys())
for c in range(0, len(currencies)):
currency = currencies[c]
uppercase = currency.upper()
account = {
'free': balances[currency],
'used': 0.0,
'total': balances[currency],
}
if uppercase == 'DRK':
uppercase = 'DASH'
result[uppercase] = account
return self.parse_balance(result)
def fetch_order_book(self, symbol, limit=None, params={}):
market = self.market(symbol)
orderbook = self.privatePostOrders(self.extend({
'cointype': market['id'],
}, params))
return self.parse_order_book(orderbook, None, 'buyorders', 'sellorders', 'rate', 'amount')
def fetch_ticker(self, symbol, params={}):
response = self.publicGetLatest(params)
id = self.market_id(symbol)
id = id.lower()
ticker = response['prices'][id]
timestamp = self.milliseconds()
last = self.safe_float(ticker, 'last')
return {
'symbol': symbol,
'timestamp': timestamp,
'datetime': self.iso8601(timestamp),
'high': None,
'low': None,
'bid': self.safe_float(ticker, 'bid'),
'bidVolume': None,
'ask': self.safe_float(ticker, 'ask'),
'askVolume': None,
'vwap': None,
'open': None,
'close': last,
'last': last,
'previousClose': None,
'change': None,
'percentage': None,
'average': None,
'baseVolume': None,
'quoteVolume': None,
'info': ticker,
}
def fetch_trades(self, symbol, since=None, limit=None, params={}):
return self.privatePostOrdersHistory(self.extend({
'cointype': self.market_id(symbol),
}, params))
def create_order(self, symbol, type, side, amount, price=None, params={}):
method = 'privatePostMy' + self.capitalize(side)
if type == 'market':
raise ExchangeError(self.id + ' allows limit orders only')
order = {
'cointype': self.market_id(symbol),
'amount': amount,
'rate': price,
}
return getattr(self, method)(self.extend(order, params))
def cancel_order(self, id, symbol=None, params={}):
raise NotSupported(self.id + ' cancelOrder() is not fully implemented yet')
# method = 'privatePostMyBuy'
# return getattr(self, method)({'id': id})
def sign(self, path, api='public', method='GET', params={}, headers=None, body=None):
if not self.apiKey:
raise AuthenticationError(self.id + ' requires apiKey for all requests')
url = self.urls['api'][api] + '/' + path
if api == 'private':
self.check_required_credentials()
nonce = self.nonce()
body = self.json(self.extend({'nonce': nonce}, params))
headers = {
'Content-Type': 'application/json',
'key': self.apiKey,
'sign': self.hmac(self.encode(body), self.encode(self.secret), hashlib.sha512),
}
return {'url': url, 'method': method, 'body': body, 'headers': headers}