I am trying to get information for Volume Traded for Home Team and Away Team. But i can only find get the Total Volume Traded for both teams in the Market Catalogue. Is there a way to get distinct volumes for each team?.
pikkas,
you can't get that information from listMarketCatalogue, you need to use listMarketBook.
(Essentially, listMarketCatalogue gives you the static or slowly changing data about a market, and listMarketBook gives you the dynamic data)
The total amount traded on a selection will be under ["runners" :[{"totalMatched"}]].
If you need the breakdown of amounts traded at each price for each selection, you need to pass "priceProjection":{"priceData":["EX_TRADED"]} to listMarketBook.
Merlin,
Thanks a lot for your response. I have tried already with MarketBook but for some reason the TotalMatched value is always 0.0. Is there any issue with the API?. please find my debugging image: http://pbrd.co/15Ks5CJ
Comment