bot18
Version:
A high-frequency cryptocurrency trading bot by Zenbot creator @carlos8f
35 lines (26 loc) • 572 B
JavaScript
env.DEBUG = '*'
const debug = require('debug')('bfx:examples:ws2_calc')
const bfx = require('../bfx')
const ws = bfx.ws(2)
ws.on('error', (err) => {
console.log(err)
})
ws.on('open', () => {
debug('open')
ws.auth()
})
ws.once('auth', () => {
debug('authenticated')
setTimeout(() => {
ws.requestCalc([
'margin_sym_tBTCUSD',
'position_tBTCUSD',
'wallet_margin_BTC',
'wallet_funding_USD'
])
// Watch log output for balance update packets (wu, miu, etc)
debug('sent calc')
}, 5000)
})
ws.open()
process.