final PriceValue price = HelperDDF.newPriceDDF(
priceBidArray[index], frac);
final SizeValue size = HelperDDF.newSizeDDF(sizeBidArray[index]);
final MarketDoBookEntry entry = new DefBookEntry(MODIFY, Book.Side.BID,
Book.Type.DEFAULT, place, price, size);
entries[entryIndex++] = entry;
}
for (int index = 0; index < countAsk; index++) {
if (sizeAskArray[index] == 0) {
continue;
}
final int place = index + 1;
final PriceValue price = HelperDDF.newPriceDDF(
priceAskArray[index], frac);
final SizeValue size = HelperDDF.newSizeDDF(sizeAskArray[index]);
final MarketDoBookEntry entry = new DefBookEntry(MODIFY, Book.Side.ASK,
Book.Type.DEFAULT, place, price, size);
entries[entryIndex++] = entry;
}