Post
Topic
Board Trading Discussion
Re: Isis ATP [Automated Trading Platform] - Discussion
by
Shirik
on 16/09/2012, 04:10:05 UTC
There is an error in TradingAgent:

Code:
                                                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.