How to retrieve the best offered odds in a selection?
Posted in Bot programming by MatteL
Hi,
Would like to retrive the best offered odds in a selection (best back odds) the line below seems to be the traded odds?
Runner runner0 = monitoredMarket.MarketDetails.Runners[0]; BetPrice betPrice0 = runner0.BestPriceToBack;
Tuesday, August 24, 2010
Runner runner0 = monitoredMarket.MarketDetails.Runners[0];
BetPrice betPrice0 = runner0.BestPriceToBack;
double odds = betPrice0 != null ? betPrice0.Price : 0;