NinjaScript > Language Reference > Strategy >

DataSeriesConfigurable

Print this Topic Previous pageReturn to chapter overviewNext page

Definition

Indicates if the strategy will allow the configuration of the main data series that will drive the strategy via the Strategy dialog window when starting a strategy from either a chart or the Strategies tab of the Control Center window. This property is only of value if a strategy should only be run on a specific data series.

 

Property Value

This property returns true if the data series is configureable; otherwise, false.

 

Syntax

DataSeriesConfigurable

 

 

Examples

protected override void Initialize()
{
    DataSeriesConfigurable = true;
}