the different states for OrderState a listed.
Which of these states are terminal states? A terminal state is a state in which that Order.OrderState will remain unless explicity changed. For example, OrderState.Accepted is not a terminal state, because this state will typically progress to another state.
I want am writing a check for my orders, and I need to know when I should null them out, or when I need to cancel the orders before nulling them.
I am guessing that OrderState.Filled, OrderState.Rejected, and OrderState.Cancelled are terminal states.
Any others?
Thanks!

Comment