-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexchange.py
More file actions
250 lines (184 loc) · 6.74 KB
/
exchange.py
File metadata and controls
250 lines (184 loc) · 6.74 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
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
# -*- coding: utf-8 -*-
"""
Classes to get data from selected Bitcoin exchanges.
Created on Sat Jun 17 13:01:13 2017
@author: hilton
From
* https://docs.python.org/3.4/library/urllib.request.html#module-urllib.request
* http://www.pythonforbeginners.com/python-on-the-web/how-to-use-urllib2-in-python/
* https://www.mercadobitcoin.com.br/api-doc/
* https://blinktrade.com/docs/
"""
import sys # exit()
import json # load()
import datetime # class datetime
import urllib.request # urlopen()
# TODO refactor classes so they are lazy -- work only when necessary
class Exchange:
U_TICKER = ''
U_TRADES = ''
U_ORDRBK = ''
# TODO implement
def __init__ (self):
# self.dnload_ticker ()
# self.process_ticker ()
pass
def dnload_ticker (self):
url = self.__class__.U_TICKER
# print (url)
f = urllib.request.urlopen (url)
line = f.readline ()
# print (line)
self.ticker = json.loads (line.decode (encoding='utf-8'))
# print (self.ticker)
def process_ticker (self):
# TODO raise exception
pass
def get_ticker (self):
self.dnload_ticker ()
self.process_ticker ()
def dnload_trades (self):
url = self.__class__.U_TRADES
# print (url)
f = urllib.request.urlopen (url)
line = f.readline ()
# print (line)
self.trades = json.loads (line.decode (encoding='utf-8'))
# print (self.ticker)
def process_trades (self):
# TODO raise exception
pass
def get_trades (self):
self.dnload_trades ()
self.process_trades ()
def dnload_orderbook (self):
url = self.__class__.U_ORDRBK
f = urllib.request.urlopen (url)
line = f.readline ()
# print (line)
self.trades = json.loads (line.decode (encoding='utf-8'))
# print (self.ticker)
def process_orderbook (self):
# TODO raise exception
pass
def get_orderbook (self):
self.dnload_orderbook ()
self.process_orderbook ()
def get_exch_name (self):
# TODO raise exception
pass
def __str__ (self):
# TODO raise exception
pass
def __repr__ (self):
result = "{0} ()".format (type (self).__name__)
# Normal function termination
return result
class FoxBit (Exchange):
U_TICKER = 'https://api.blinktrade.com/api/v1/BRL/ticker?crypto_currency=BTC'
def __init__ (self):
super ().__init__ ()
def process_ticker (self):
# TODO get the date from the computer ?
# self.ts = int (self.ticker['date'])
self.ticker['date'] = datetime.datetime.now ()
# TODO generate ts from dt
def get_ticker (self):
super ().get_ticker ()
self.buy = float (self.ticker['buy'])
self.sell = float (self.ticker['sell'])
self.high = float (self.ticker['high'])
self.low = float (self.ticker['low'])
self.dt = self.ticker['date']
result = (self.dt, self.sell, self.buy, self.high, self.low)
return result
def process_trades (self):
# TODO get the date from the computer ?
# self.ts = int (self.ticker['date'])
self.buy = float (self.ticker['buy'])
self.sell = float (self.ticker['sell'])
self.high = float (self.ticker['high'])
self.low = float (self.ticker['low'])
self.dt = datetime.datetime.now ()
# TODO generate ts from dt
def get_trades (self):
super ().get_ticker ()
buy = self.buy
sell = self.sell
high = self.high
low = self.low
dt = self.dt
result = (dt, sell, buy, high, low)
return result
def get_exch_name (self):
return "FoxBit"
def __str__ (self):
result = '{'
result += 'buy : ' + str (self.buy) + ', '
result += 'sell : ' + str (self.sell) + ', '
result += 'high : ' + str(self.high) + ', '
result += 'low : ' + str (self.low) + ', '
result += 'dt : ' + str (self.dt)
result += '}'
# Normal function termination
return result
class MercadoBitcoin (Exchange):
U_TICKER = 'https://www.mercadobitcoin.net/api/ticker/'
U_ORDRBK = 'https://www.okcoin.com/api/v1/depth.do?symbol=btc_usd'
U_TRADES = 'https://www.okcoin.com/api/v1/trades.do?symbol=btc_usd'
def __init__ (self):
super ().__init__ ()
def process_ticker (self):
# myClass = type (self).__name__
# print ("{0}.process_ticker ()".format (myClass))
self.ts = int (self.ticker['ticker']['date'])
self.buy = float (self.ticker['ticker']['buy'])
self.sell = float (self.ticker['ticker']['sell'])
self.high = float (self.ticker['ticker']['high'])
self.low = float (self.ticker['ticker']['low'])
self.dt = datetime.datetime.fromtimestamp (float (self.ts))
def get_ticker (self):
super ().get_ticker ()
buy = self.buy
sell = self.sell
high = self.high
low = self.low
dt = self.dt
result = (dt, sell, buy, high, low)
return result
def get_exch_name (self):
return "Mercado Bitcoin"
class OkCoin (Exchange):
U_TICKER = 'https://www.okcoin.com/api/v1/ticker.do?symbol=btc_usd'
def __init__ (self):
super ().__init__ ()
def process_ticker (self):
self.ts = int (self.ticker['date'])
self.buy = float (self.ticker['ticker']['buy'])
self.sell = float (self.ticker['ticker']['sell'])
self.high = float (self.ticker['ticker']['high'])
self.low = float (self.ticker['ticker']['low'])
self.dt = datetime.datetime.fromtimestamp (float (self.ts))
def get_ticker (self):
super ().get_ticker ()
buy = self.buy
sell = self.sell
high = self.high
low = self.low
dt = self.dt
result = (dt, sell, buy, high, low)
return result
def get_exch_name (self):
return "OkCoin"
def main ():
exchanges = []
exchanges.append (FoxBit ())
exchanges.append (MercadoBitcoin ())
exchanges.append (OkCoin ())
for exch in exchanges:
exch.get_ticker ()
print ("{0}".format (exch.get_exch_name ()))
print ("{0}".format (exch))
return 0
if __name__ == '__main__':
sys.exit (main ())