listMarketBook

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • katkat87
    Junior Member
    • Dec 2014
    • 2

    #1

    listMarketBook

    Hi,

    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);
    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?
  • katkat87
    Junior Member
    • Dec 2014
    • 2

    #2
    Code:
                    ISet<PriceData> priceData = new HashSet<PriceData>();
                    priceData.Add(PriceData.EX_ALL_OFFERS);
                    var priceProjection = new PriceProjection();
                    priceProjection.PriceData = priceData; 
                    [B]priceProjection.Virtualise = true;[/B]
                    var marketBook = client.listMarketBook(marketIds, priceProjection);
    That fixed it.

    Comment

    Working...
    X