I've been running my strategies on some new instruments and exchanges. In particular, today I ran on SB (sugar on ICE) and received a rejected order because it appears that strategies, by default, submit GTC orders which ICE won't accept.
So, looking at the Ninja help guide, I find this....
protected override void Initialize()
{
TimeInForce = Cbi.TimeInForce.Day;
}
If I add this bit of code, will that likely upset all the other instruments/exchanges that are currently working just fine? I do trade both RTH and through the night. Would it perhaps be best if I had a separate script for the ICE products? (which I'd much prefer NOT to do).
Thanks.

Comment