You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see coinbase has a Pricing API to retrieve all these details, but didn't find anything in the GDAX documentation? Should I use coinbase API for pricing instead?
The text was updated successfully, but these errors were encountered:
For the best bid/ask you will need to call the MarketDataService.getMarketData(product, level) which will return a MarketData object with bids/asks. Do with this what you will. Request level 1 data
For the top 50 I believe you can do a level 2 getMarketData request - this will return something like the top 50 bids/asks in the same way as above.
Download the entire orderbook as it currently stands - this is a level 3 request for the product Id. This will provide a snapshot in time of all bids/asks.
to maintain a live orderbook - this is being worked on and will be available as soon as reasonably possible.
I see coinbase has a Pricing API to retrieve all these details, but didn't find anything in the GDAX documentation? Should I use coinbase API for pricing instead?
The text was updated successfully, but these errors were encountered: