There is an error in TradingAgent:
if(qtyToSell.compareTo(minBTC) < 0) {
log.info(qtyToSell.toPlainString() + " was less than the configured limit of "+minBTC.toPlainString()+"\nIncreasing order size to "+minBTC.toPlainString());
}
I believe there is a missing `qtyToSell = minBTC` here.