forked from ccxt/ccxt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoxbit.py
More file actions
205 lines (191 loc) · 8.48 KB
/
foxbit.py
File metadata and controls
205 lines (191 loc) · 8.48 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
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
# -*- 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.async_support.base.exchange import Exchange
from ccxt.base.errors import ExchangeError
class foxbit (Exchange):
def describe(self):
return self.deep_extend(super(foxbit, self).describe(), {
'id': 'foxbit',
'name': 'FoxBit',
'countries': ['BR'],
'has': {
'CORS': False,
'createMarketOrder': False,
},
'rateLimit': 1000,
'version': 'v1',
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/27991413-11b40d42-647f-11e7-91ee-78ced874dd09.jpg',
'api': {
'public': 'https://api.blinktrade.com/api',
'private': 'https://api.blinktrade.com/tapi',
},
'www': 'https://foxbit.exchange',
'doc': 'https://blinktrade.com/docs',
},
'comment': 'Blinktrade API',
'api': {
'public': {
'get': [
'{currency}/ticker', # ?crypto_currency=BTC
'{currency}/orderbook', # ?crypto_currency=BTC
'{currency}/trades', # ?crypto_currency=BTC&since=<TIMESTAMP>&limit=<NUMBER>
],
},
'private': {
'post': [
'D', # order
'F', # cancel order
'U2', # balance
'U4', # my orders
'U6', # withdraw
'U18', # deposit
'U24', # confirm withdrawal
'U26', # list withdrawals
'U30', # list deposits
'U34', # ledger
'U70', # cancel withdrawal
],
},
},
'markets': {
'BTC/VEF': {'id': 'BTCVEF', 'symbol': 'BTC/VEF', 'base': 'BTC', 'quote': 'VEF', 'brokerId': 1, 'broker': 'SurBitcoin'},
'BTC/VND': {'id': 'BTCVND', 'symbol': 'BTC/VND', 'base': 'BTC', 'quote': 'VND', 'brokerId': 3, 'broker': 'VBTC'},
'BTC/BRL': {'id': 'BTCBRL', 'symbol': 'BTC/BRL', 'base': 'BTC', 'quote': 'BRL', 'brokerId': 4, 'broker': 'FoxBit'},
'BTC/PKR': {'id': 'BTCPKR', 'symbol': 'BTC/PKR', 'base': 'BTC', 'quote': 'PKR', 'brokerId': 8, 'broker': 'UrduBit'},
'BTC/CLP': {'id': 'BTCCLP', 'symbol': 'BTC/CLP', 'base': 'BTC', 'quote': 'CLP', 'brokerId': 9, 'broker': 'ChileBit'},
},
'options': {
'brokerId': '4', # https://blinktrade.com/docs/#brokers
},
})
async def fetch_balance(self, params={}):
response = await self.privatePostU2({
'BalanceReqID': self.nonce(),
})
balances = self.safe_value(response['Responses'], self.options['brokerId'])
result = {'info': response}
if balances is not None:
currencyIds = list(self.currencies_by_id.keys())
for i in range(0, len(currencyIds)):
currencyId = currencyIds[i]
currency = self.currencies_by_id[currencyId]
code = currency['code']
# we only set the balance for the currency if that currency is present in response
# otherwise we will lose the info if the currency balance has been funded or traded or not
if currencyId in balances:
account = self.account()
account['used'] = float(balances[currencyId + '_locked']) * 1e-8
account['total'] = float(balances[currencyId]) * 1e-8
account['free'] = account['total'] - account['used']
result[code] = account
return self.parse_balance(result)
async def fetch_order_book(self, symbol, limit=None, params={}):
market = self.market(symbol)
orderbook = await self.publicGetCurrencyOrderbook(self.extend({
'currency': market['quote'],
'crypto_currency': market['base'],
}, params))
return self.parse_order_book(orderbook)
async def fetch_ticker(self, symbol, params={}):
market = self.market(symbol)
ticker = await self.publicGetCurrencyTicker(self.extend({
'currency': market['quote'],
'crypto_currency': market['base'],
}, params))
timestamp = self.milliseconds()
lowercaseQuote = market['quote'].lower()
quoteVolume = 'vol_' + lowercaseQuote
last = self.safe_float(ticker, 'last')
return {
'symbol': symbol,
'timestamp': timestamp,
'datetime': self.iso8601(timestamp),
'high': self.safe_float(ticker, 'high'),
'low': self.safe_float(ticker, 'low'),
'bid': self.safe_float(ticker, 'buy'),
'bidVolume': None,
'ask': self.safe_float(ticker, 'sell'),
'askVolume': None,
'vwap': None,
'open': None,
'close': last,
'last': last,
'previousClose': None,
'change': None,
'percentage': None,
'average': None,
'baseVolume': self.safe_float(ticker, 'vol'),
'quoteVolume': float(ticker[quoteVolume]),
'info': ticker,
}
def parse_trade(self, trade, market):
timestamp = trade['date'] * 1000
return {
'id': self.safe_string(trade, 'tid'),
'info': trade,
'timestamp': timestamp,
'datetime': self.iso8601(timestamp),
'symbol': market['symbol'],
'type': None,
'side': trade['side'],
'price': trade['price'],
'amount': trade['amount'],
}
async def fetch_trades(self, symbol, since=None, limit=None, params={}):
market = self.market(symbol)
response = await self.publicGetCurrencyTrades(self.extend({
'currency': market['quote'],
'crypto_currency': market['base'],
}, params))
return self.parse_trades(response, market, since, limit)
async def create_order(self, symbol, type, side, amount, price=None, params={}):
if type == 'market':
raise ExchangeError(self.id + ' allows limit orders only')
market = self.market(symbol)
orderSide = '1' if (side == 'buy') else '2'
order = {
'ClOrdID': self.nonce(),
'Symbol': market['id'],
'Side': orderSide,
'OrdType': '2',
'Price': price,
'OrderQty': amount,
'BrokerID': market['brokerId'],
}
response = await self.privatePostD(self.extend(order, params))
indexed = self.index_by(response['Responses'], 'MsgType')
execution = indexed['8']
return {
'info': response,
'id': execution['OrderID'],
}
async def cancel_order(self, id, symbol=None, params={}):
return await self.privatePostF(self.extend({
'ClOrdID': id,
}, params))
def sign(self, path, api='public', method='GET', params={}, headers=None, body=None):
url = self.urls['api'][api] + '/' + self.version + '/' + self.implode_params(path, params)
query = self.omit(params, self.extract_params(path))
if api == 'public':
if query:
url += '?' + self.urlencode(query)
else:
self.check_required_credentials()
nonce = str(self.nonce())
request = self.extend({'MsgType': path}, query)
body = self.json(request)
headers = {
'APIKey': self.apiKey,
'Nonce': nonce,
'Signature': self.hmac(self.encode(nonce), self.encode(self.secret)),
'Content-Type': 'application/json',
}
return {'url': url, 'method': method, 'body': body, 'headers': headers}
async def request(self, path, api='public', method='GET', params={}, headers=None, body=None):
response = await self.fetch2(path, api, method, params, headers, body)
if 'Status' in response:
if response['Status'] != 200:
raise ExchangeError(self.id + ' ' + self.json(response))
return response