forked from Tucsky/SignificantTrades
-
Notifications
You must be signed in to change notification settings - Fork 0
/
okex.js
207 lines (167 loc) · 4.75 KB
/
okex.js
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
import Exchange from '../services/exchange'
import pako from 'pako'
class Okex extends Exchange {
constructor(options) {
super(options)
this.id = 'okex'
this.types = []
this.tradeStack = []
this.dispatchTradesTimeout = null
this.endpoints = {
PRODUCTS: [
'https://www.okex.com/api/spot/v3/instruments',
'https://www.okex.com/api/swap/v3/instruments',
'https://www.okex.com/api/futures/v3/instruments'
],
TRADES: () => `https://www.okex.com/api/v1/trades.do?symbol=${this.pair}`
}
// 2019-11-06
// retro compatibility for client without contract specification stored
// -> force refresh of stored instruments / specs
if (this.products && typeof this.specs === 'undefined') {
delete this.products
}
this.matchPairName = pair => {
let id = this.products[pair] || this.products[pair.replace(/USDT/i, 'USD')]
if (!id) {
for (let name in this.products) {
if (pair === this.products[name]) {
id = this.products[name]
break
}
}
}
if (id) {
if (/\d+$/.test(id)) {
this.types[id] = 'futures'
} else if (/-SWAP$/.test(id)) {
this.types[id] = 'swap'
} else {
this.types[id] = 'spot'
}
}
return id || false
}
this.options = Object.assign(
{
url: 'wss://real.okex.com:8443/ws/v3'
},
this.options
)
this.initialize()
}
connect() {
const validation = super.connect()
if (!validation) return Promise.reject()
else if (validation instanceof Promise) return validation
return new Promise((resolve, reject) => {
this.api = new WebSocket(this.getUrl())
this.api.binaryType = 'arraybuffer'
this.api.onmessage = event => this.queueTrades(this.formatLiveTrades(event.data))
this.api.onopen = e => {
this.api.send(
JSON.stringify({
op: 'subscribe',
args: this.pairs.map(pair => `${this.types[pair]}/trade:${pair}`)
})
)
this.keepalive = setInterval(() => {
this.api.send('ping')
}, 30000)
this.emitOpen(e)
resolve()
}
this.api.onclose = event => {
this.emitClose(event)
clearInterval(this.keepalive)
}
this.api.onerror = () => {
this.emitError({ message: `${this.id} disconnected` })
reject()
}
})
}
disconnect() {
if (!super.disconnect()) return
clearInterval(this.keepalive)
if (this.api && this.api.readyState < 2) {
this.api.close()
}
}
formatLiveTrades(event) {
let json
try {
if (event instanceof String) {
json = JSON.parse(event)
} else {
json = JSON.parse(pako.inflateRaw(event, { to: 'string' }))
}
} catch (error) {
return
}
if (!json || !json.data || !json.data.length) {
return
}
return json.data.map(trade => {
let size
if (typeof this.specs[trade.instrument_id] !== 'undefined') {
size = ((trade.size || trade.qty) * this.specs[trade.instrument_id]) / trade.price
} else {
size = trade.size
}
return {
exchange: this.id,
timestamp: +new Date(trade.timestamp),
price: +trade.price,
size: +size,
side: trade.side
}
})
}
/* formatRecentsTrades(response) {
if (response && response.length) {
return response.map(trade => [
this.id,
trade.date_ms,
trade.price,
trade.amount,
trade.type === 'buy' ? 1 : 0,
]);
}
} */
formatProducts(response) {
const products = {}
const specs = {}
const types = ['spot', 'swap', 'futures']
response.forEach((data, index) => {
data.forEach(product => {
const pair = (
(product.base_currency ? product.base_currency : product.underlying_index) +
(types[index] === 'spot' ? product.quote_currency.replace(/usdt$/i, 'USD') : product.quote_currency)
).toUpperCase() // base+quote ex: BTCUSD
switch (types[index]) {
case 'spot':
products[pair] = product.instrument_id
break
case 'swap':
products[pair + '-SWAP'] = product.instrument_id
specs[product.instrument_id] = +product.contract_val
break
case 'futures':
products[pair + '-' + product.alias.toUpperCase()] = product.instrument_id
specs[product.instrument_id] = +product.contract_val
break
}
})
})
return {
products,
specs
}
}
pad(num, size) {
var s = '000000000' + num
return s.substr(s.length - size)
}
}
export default Okex