in simulator/src/main/java/com/google/cloud/JSONOutputConsumer.java [143:149]
private String PriceQuantityListToString(List<PriceQuantity> pqs) {
ArrayList<String> prices = new ArrayList<String>();
for (MarketDepth.PriceQuantity pq : pqs) {
prices.add(PriceQuantityToString(pq));
}
return "[" + String.join(",", prices) + "]";
}