Hi Eugene,
Thank you so much for all your work on this new release. I've update my JBT
and ran backtests on all strategies. Results are identical. The only issue
I had with the code was that, in certain strategies, this method....
@Override
public Contract getNewContract() {
return ContractFactory.makeFutureContract("ES", "GLOBEX");
}
...threw the error "The method getNewContract() of type... must override or
implement a supertype method". I fixed it by dropping the "@Override",
so....
public Contract getNewContract() {
return ContractFactory.makeFutureContract("ES", "GLOBEX");
}
Not sure if this is a good idea or not. Did anyone else have this issue?
Many thanks again,
Mick
--
You received this message because you are subscribed to the Google Groups
"JBookTrader" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/jbooktrader.
For more options, visit https://groups.google.com/groups/opt_out.