first things first --> I am aware of:
Source: https://ninjatrader.com/support/help...dataseries.htm
[...]
protected override void OnStateChange()
{[INDENT]if (State == State.SetDefaults)[/INDENT][INDENT]{[/INDENT][INDENT=2][...]
DataSeriesMinutes = 60;
[...][/INDENT][INDENT]}
else if (State == State.Configure)
{
AddDataSeries(Data.BarsPeriodType.Minute, DataSeriesMinutes);
}[/INDENT]
[...]
#region Properties
[NinjaScriptProperty]
[Range(1, int.MaxValue)]
[Display(Name="DataSeriesMinutes", Description="Secondary DataSeries in minutes", Order=1, GroupName="Parameters")]
public int DataSeriesMinutes
{ get; set; }
[...]
==> Is there any workaround we could use for that goal? It would be time-consuming when I click on strategy analyzer and manually run a backtest for DataSeriesMinutes=1, DataSeriesMinutes=2, DataSeriesMinutes=3, DataSeriesMinutes=4, etc.
any help appreciated.
Thanks in advance!
Patricia

because I have entered about >100 times different settings for that variable DataSeriesMinutes in the backtest window.
Comment