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