IncludeCommission

<< Click to Display Table of Contents >>

Navigation:  NinjaScript > Language Reference > Strategy >

IncludeCommission

Previous page Return to chapter overview Next page

Definition

Determines if the strategy performance results will include commission on a historical backtest. When true, the Commission Template applied to the account on which the strategy is running will be used.

 

Property Value

A bool value which returns true if the strategy includes commission on a historical backtest; otherwise, false.  Default value is set to false.

 

Warning:  This property should ONLY bet set from the OnStateChange() method during State.SetDefaults or State.Configure

 

 

Syntax

IncludeCommission

 

Examples

ns

protected override void OnStateChange()
{
    if (State == State.SetDefaults)
    {
        IncludeCommission = true;
    }
}