NinjaScript > Language Reference > Strategy > Order Methods > Unmanaged Approach >

Unmanaged

Print this Topic Previous pageReturn to chapter overviewNext page

Definition

Indicates if the strategy will be using Unmanaged order methods. Please note that you will not be able to mix Unmanaged order methods with Managed order methods.

 

Property Value

This property returns true if the strategy will use Unmanaged order methods; otherwise, false. Default is set to false.

 

Syntax

Unmanaged

 

 

Examples

protected override void Initialize()
{

    // Use Unmanaged order methods
    Unmanaged = true;
}