Skip to content

Commit 90fc3d1

Browse files
committed
Update the BitMEXClient.noSymbolTables list
1 parent 0702d25 commit 90fc3d1

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

official-ws/nodejs/index.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,18 @@ const endpoints = {
1212
testnet: 'wss://testnet.bitmex.com/realtime'
1313
};
1414
const noSymbolTables = BitMEXClient.noSymbolTables = [
15+
'account',
16+
'affiliate',
17+
'funds',
18+
'insurance',
1519
'margin',
16-
'chat'
20+
'transact',
21+
'wallet',
22+
'announcement',
23+
'connected',
24+
'chat',
25+
'publicNotifications',
26+
'privateNotifications'
1727
];
1828

1929
module.exports = BitMEXClient;
@@ -163,6 +173,7 @@ BitMEXClient.prototype.subscriptionCount = function(table, symbol) {
163173
};
164174

165175
BitMEXClient.prototype.sendSubscribeRequest = function(table, symbol) {
176+
console.log(JSON.stringify({op: 'subscribe', args: `${table}:${symbol}`}))
166177
this.socket.send(JSON.stringify({op: 'subscribe', args: `${table}:${symbol}`}));
167178
};
168179

0 commit comments

Comments
 (0)