Hi,
I am trying to specify the Best Offer OverRide - by default it is 3 when using EX_BEST_OFFERS
I tried several values - and it always return 3 best (when available) - see the java code below
Anyone else is using this feature?
Thanks
PriceProjection priceProjection = new PriceProjection();
Set<PriceData> priceData = new HashSet<>();
priceData.add(PriceData.EX_BEST_OFFERS);
priceData.add(PriceData.EX_TRADED);
priceProjection.setPriceData(priceData);
ExBestOfferOverRides ex = new ExBestOfferOverRides();
ex.setBestPricesDepth(6);
priceProjection.setExBestOfferOverRides(ex);
return priceProjection;
I am trying to specify the Best Offer OverRide - by default it is 3 when using EX_BEST_OFFERS
I tried several values - and it always return 3 best (when available) - see the java code below
Anyone else is using this feature?
Thanks
PriceProjection priceProjection = new PriceProjection();
Set<PriceData> priceData = new HashSet<>();
priceData.add(PriceData.EX_BEST_OFFERS);
priceData.add(PriceData.EX_TRADED);
priceProjection.setPriceData(priceData);
ExBestOfferOverRides ex = new ExBestOfferOverRides();
ex.setBestPricesDepth(6);
priceProjection.setExBestOfferOverRides(ex);
return priceProjection;


Comment