I am running the strategy as GTC and DAY, makes no difference.
What are the conditions or situations that would cause an order to "die" or be cancelled?
Another way to look at it is this. I don't specifically cancel any orders, so what would cause an order to cancel? If I have entries per direction set to say 1, and an order is working, I expect the order to cancel if I get a new signal to enter and a new order fires. But if that is the case, how can I ever have NO orders working when I don't specifically cancel an order?
Is it good for the bar?
Here is some of my entry and exits. I am not using the LiveTilCancel overloads, could that have something to do with it?
Please direct me to a good read so I can understand order behavior.
ExitLongStop(Close[0], "ExitLong", "Long1"); // Set Stop Immediately
EnterLongLimit(1, Close[0], "Long1");
I do believe I have entries per direction set to 1, so if a new order is entered, I am ok with the old one being cancelled, but I can't understand how an order can just die after what appears to be a certain amount of time.
I'm sure this is obvious, I just want to get a handle on it.
Thank you!

Comment