This repository has been archived by the owner on Jun 13, 2021. It is now read-only.
forked from beastlybeast/SignificantTrades
-
Notifications
You must be signed in to change notification settings - Fork 212
/
Copy pathhuobi.js
187 lines (154 loc) · 4.6 KB
/
huobi.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
import Exchange from '../services/exchange'
import pako from 'pako'
class Huobi extends Exchange {
constructor(options) {
super(options)
this.id = 'huobi'
this.types = []
this.contractTypesAliases = {
this_week: 'CW',
next_week: 'NW',
quarter: 'CQ',
next_quarter: 'NQ'
}
this.endpoints = {
PRODUCTS: [
'https://api.huobi.pro/v1/common/symbols',
'https://api.hbdm.com/api/v1/contract_contract_info',
'https://api.hbdm.com/swap-api/v1/swap_contract_info'
]
}
// 2019-12-13
// 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(/USD$/, 'USDT')]
if (!id) {
for (let name in this.products) {
if (pair === this.products[name]) {
id = this.products[name]
break
}
}
}
if (id) {
if (id.indexOf('-') !== -1) {
this.types[id] = 'swap'
} else if (id.indexOf('_') !== -1) {
this.types[id] = 'futures'
} else {
this.types[id] = 'spot'
}
}
return id || false
}
this.options = Object.assign(
{
url: pair => {
if (this.types[pair] === 'futures') {
return 'wss://www.hbdm.com/ws'
} else if (this.types[pair] === 'swap') {
return 'wss://api.hbdm.com/swap-ws'
} else {
return 'wss://api.huobi.pro/ws'
}
}
},
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.pair))
this.api.binaryType = 'arraybuffer'
this.api.onmessage = event => this.queueTrades(this.formatLiveTrades(event.data))
this.api.onopen = e => {
for (let pair of this.pairs) {
this.api.send(
JSON.stringify({
sub: 'market.' + (this.types[pair] === 'futures' ? pair.toUpperCase() : pair.toLowerCase()) + '.trade.detail',
id: pair
})
)
}
this.emitOpen(e)
resolve()
}
this.api.onclose = this.emitClose.bind(this)
this.api.onerror = () => {
this.emitError({ message: `${this.id} disconnected` })
reject()
}
})
}
disconnect() {
if (!super.disconnect()) return
if (this.api && this.api.readyState < 2) {
this.api.close()
}
}
formatLiveTrades(event) {
const json = JSON.parse(pako.inflate(event, { to: 'string' }))
if (!json) {
return
}
if (json.ping) {
this.api.send(JSON.stringify({ pong: json.ping }))
return
} else if (json.tick && json.tick.data && json.tick.data.length) {
const pair = json.ch.replace(/market.(.*).trade.detail/, '$1')
return json.tick.data.map(trade => {
let amount = +trade.amount
if (typeof this.specs[pair] !== 'undefined') {
amount = (amount * this.specs[pair]) / trade.price
}
return {
exchange: this.id,
timestamp: trade.ts,
price: +trade.price,
size: amount,
side: trade.direction
}
})
}
}
formatProducts(response) {
const products = {}
const specs = {}
const types = ['spot', 'futures', 'swap']
response.forEach((_data, index) => {
_data.data.forEach(product => {
let pair
switch (types[index]) {
case 'spot':
pair = (product['base-currency'] + product['quote-currency']).toUpperCase()
products[pair] = pair
break
case 'futures':
pair = product.symbol + '_' + this.contractTypesAliases[product.contract_type]
products[product.symbol + 'USD' + '-' + product.contract_type.toUpperCase()] = pair
products[product.contract_code] = pair
specs[pair] = +product.contract_size
break
case 'swap':
products[product.symbol + 'USD' + '-PERPETUAL'] = product.contract_code
types[product.contract_code] = 'swap'
specs[product.contract_code] = +product.contract_size
break
}
})
})
return {
products,
specs
}
}
}
export default Huobi