Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Relative strength of instruments against SP500
Collapse
X
-
Hello Woodbine,
You would need to add additional series to your script, and use the data series with the proper BarsInProgress index.
For example
In State.Configure:
AddDataSeries("^SP500", BarsPeriodType.Minute, 1);
This adds the ^SP500 series.
In the scope of the class
private Series<double> myDoubleSeries;
In State.SetDefaults
myDoubleSeries = new Series<double>(this);
This adds a series to hold the quotient of the added series current bar value by the primary series current bar value
In OnBarUpdate:
if (BarsInProgress == 0)
{
myDoubleSeries[0] = Closes[0][0] / Closes[1][0];
Print(SMA(myDoubleSeries, 5)[0]);
}
This would save the quotient to the current bars value for myDoubleSeries and then would print the value of the SMA using this series as the input.
You could also plot this instead of printing this.
Chelsea B.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
574 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
333 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment