We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Funding ticker fields bidSize and bidPeriod are swapped around. https://github.com/bitfinexcom/bfx-api-node-models/blob/master/lib/funding_ticker.js#L9-L24
bidSize
bidPeriod
Correct position for bidSize is 4 and for bidPeriod is 3. Similarly, correct position for askSize is 7 and for askPeriod is 6.
4
3
askSize
7
askPeriod
6
Also, field frrAmountAvailable is missing.
frrAmountAvailable
Const fields should be:
fields
const fields = { symbol: 0, frr: 1, bid: 2, bidSize: 4, bidPeriod: 3, ask: 5, askSize: 7, askPeriod: 6, dailyChange: 8, dailyChangePerc: 9, lastPrice: 10, volume: 11, high: 12, low: 13, frrAmountAvailable: 14, }
Reference: https://docs.bitfinex.com/reference#ws-public-ticker
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue type
Brief description
Funding ticker fields
bidSize
andbidPeriod
are swapped around.https://github.com/bitfinexcom/bfx-api-node-models/blob/master/lib/funding_ticker.js#L9-L24
Correct position for
bidSize
is4
and forbidPeriod
is3
.Similarly, correct position for
askSize
is7
and foraskPeriod
is6
.Also, field
frrAmountAvailable
is missing.Const
fields
should be:Reference: https://docs.bitfinex.com/reference#ws-public-ticker
Steps to reproduce
Additional Notes:
The text was updated successfully, but these errors were encountered: