Hello,
I have the following problem.
I'm submitting my orders with a number as comment:
String goodTillTime = Long.toString(1298664000000L);
engine.submitOrder(..., goodTillTime);
later on I read the comment and get the number with an asterisk appended:
IOrder.getComment() -> "1298664000000*"
Where does the asterisk come from?
I've only experienced this problem running the strategy live. Using the Historical Tester I couldn't reproduce this behaviour.