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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
156 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
90 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
138 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
130 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
107 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment