we are using TRCC to contribute our quotes to Reuters. But we've found the ask/bid size shown the quote page on Eikon is 1/10 of what we want to publish. For example, if ask size is 10 for the input, the quote page shows 1.
Here's my code to set the ask and bid size.
FieldList nestedFieldList = EmaFactory.createFieldList();nestedFieldList.add(EmaFactory.createFieldEntry().realFromDouble(393, bid, OmmReal.MagnitudeType.EXPONENT_NEG_1));nestedFieldList.add(EmaFactory.createFieldEntry().realFromDouble(275, ask, OmmReal.MagnitudeType.EXPONENT_NEG_1));nestedFieldList.add(EmaFactory.createFieldEntry().real(791, bidSize*10,OmmReal.MagnitudeType.EXPONENT_NEG_1));nestedFieldList.add(EmaFactory.createFieldEntry().real(985, askSize*10,OmmReal.MagnitudeType.EXPONENT_NEG_1));