Unmanaged Approach
The Unmanaged approach is reserved for VERY EXPERIENCED programmers. In place of the convenience layer that the Managed approach offered, the Unmanaged approach instead offers ultimate flexibility in terms of order submission and management. This section will discuss some of the basics of working with Unmanaged order methods.
Getting started with Unmanaged order methods
To be able to offer you the flexibility required to achieve more complex order submission techniques, NinjaTrader needs to be able to know if you are going to be using the Unmanaged approach beforehand.
In the OnStateChange() method designating the IsUnmanaged property as true signifies to NinjaTrader that you will be using the Unmanaged approach. Setting this will effectively prevent any of the signal tracking and internal order handling rules that were present in the Managed approach.
Please note that you will not be able to mix order methods from the two approaches. When setting IsUnmanaged to true, you can only use Unmanaged order methods in the strategy.
Working with Unmanaged order methods
Order Submission
Order submission with the Unmanaged approach is done solely from a single order method. Parameterizing the SubmitOrderUnmanaged() method differently will determine what kind of order you will be submitting. Please note that these orders are live until cancelled. Should you want to cancel these orders you will need to use the CancelOrder() method or wait till the orders expire due to the strategy’s time in force setting.
In the example below, a buy limit order to enter a long position is working at the bid price provided that the close price of the current bar is greater than the current value of the 20 period simple moving average.
It is critical to assign an Order object to keep track of your order or else you will not be able to identify it in your code later since there is no signal tracking when using Unmanaged order methods. Please be aware of the following information about Order objects:
•An Order object returned from calling an order method is dynamic in that its properties will always reflect the current state of an order
•The property <Order>.OrderId is NOT a unique value since it can change throughout an order’s lifetime
•To check for equality you can compare Order objects directly
Order Modification
Unlike the Managed approach where you could modify a working order by calling the entry order method again with your new parameters, the Unmanaged approach requires the utilization of the ChangeOrder() method. The ChangeOrder() method requires you to have access to the Order object you wish to modify so it is important to hold onto those for any active order you have in your strategy.
Order Cancellation
Similar to the live until canceled technique from the Managed approach, canceling orders can be done through the CancelOrder() method.
Signal Tracking
Since the Unmanaged approach does not utilize NinjaScript’s signal tracking the features associated with it will no longer be relevant. The following properties and their associated concept cannot be used with Unmanaged order methods:
Methods utilizing signal names like BarsSinceEntryExecution() and BarsSinceExitExecution() can still be used though.

