Open ohld opened 6 years ago
BTW I'm developing my Python wrapper for ViaBTC Exchange server. It is early-stage but star button can be smashed already! https://github.com/testnet-exchange/python-viabtc-api
I am also facing the same issue, can anyone help?
@ohld Please try this payload
{"method": "order.book", "params": ['BTCUSDT', 2, 1, 5], "id": 0 }
use the market
, side
, offset
and limit
that suits for you
Works for me!!
@ohld
{"method": "order.book", "params": ["BTCBCH", 2, 0, 101], "id": 1516681174} make sure your market exists and limit is less than 102
@objectt One doubt what is id
refers to and why we use it
@niyas Every request and response includes request id therefore client can use it to match corresponding request and response. It must be an integer but doesn't have to be unique.
Hi there!
In Wiki pages there is a documentation for
order.book
method:But if I send this params I get the error:
What are the proper arguments for that method? Thanks