Hi,
I have been using the API with C#:
The exchange prices I am getting using this request are incomplete.
Some volumes are missing, which I can see with the browser, but are not reported with this request.
Anyone knows why?
I have been using the API with C#:
Code:
ISet<PriceData> priceData = new HashSet<PriceData>();
priceData.Add(PriceData.EX_ALL_OFFERS);
var priceProjection = new PriceProjection();
priceProjection.PriceData = priceData;
var marketBook = client.listMarketBook(marketIds, priceProjection);
Some volumes are missing, which I can see with the browser, but are not reported with this request.
Anyone knows why?


Comment