forked from Tucsky/SignificantTrades
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitmex.js
119 lines (97 loc) · 3.01 KB
/
bitmex.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
import Exchange from '../services/exchange'
class Bitmex extends Exchange {
constructor(options) {
super(options)
this.id = 'bitmex'
this.endpoints = {
PRODUCTS: 'https://www.bitmex.com/api/v1/instrument/active',
TRADES: () => `https://www.bitmex.com/api/v1/trade?symbol=${this.pair}&reverse=true&count=500`
}
this.options = Object.assign(
{
url: () => {
return `wss://www.bitmex.com/realtime?subscribe=${this.pairs.map(pair => `trade:${pair}`)},${this.pairs.map(pair => `liquidation:${pair}`)}`
}
},
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.quotedInUSD = /USD$/.test(this.pair) || /^XBT/.test(this.pair)
this.api.onmessage = event => this.queueTrades(this.formatLiveTrades(JSON.parse(event.data)))
this.api.onopen = e => {
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()
}
}
/*queueTrades(trades) {
if (!trades.length) {
return
}
return this.emit('trades', trades)
}*/
formatLiveTrades(json) {
if (json && json.data && json.data.length) {
if (json.table === 'liquidation' && json.action === 'insert') {
return json.data.map(trade => ({
exchange: this.id,
timestamp: +new Date(),
price: trade.price,
size: trade.leavesQty / (this.quotedInUSD ? trade.price : 1),
side: trade.side === 'Buy' ? 'buy' : 'sell',
liquidation: true
}))
} else if (json.table === 'trade' && json.action === 'insert') {
return json.data.map(trade => ({
exchange: this.id,
timestamp: +new Date(trade.timestamp),
price: trade.price,
size: trade.size / (this.quotedInUSD ? trade.price : 1),
side: trade.side === 'Buy' ? 'buy' : 'sell'
}))
}
}
return false
}
/* formatRecentsTrades(response) {
if (response && response.length) {
return response.reverse().map(trade => [
this.id,
+new Date(trade.timestamp),
trade.price,
trade.size / trade.price,
trade.side === 'Buy' ? 1 : 0
])
}
} */
formatProducts(data) {
return data.map(a => a.symbol)
}
matchPairName(name) {
if (this.products.indexOf(name) !== -1) {
return name
} else if ((name = name.replace('BTC', 'XBT')) && this.products.indexOf(name) !== -1) {
return name
}
return false
}
}
export default Bitmex