What happens if I set TimeInForce = TimeInForce.Gtc and for some reason the order was not executed. Is the order cancelled and I need to resubmit it or since it's GTC it will enter a long position eventually and there's no need for me to resubmit it?
Thanks
private bool _didEnterPosition = false;
private void OnBarUpdate()
{
if (!_didEnterPosition)
{
_didEnterPosition = true;
EnterLong();
}
}

Comment