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 Mindset, 04-21-2026, 06:46 AM
|
0 responses
67 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
96 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
53 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
108 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
63 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment