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 SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
31 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
18 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
9 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
16 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
20 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment