The indicator plots a value of -1, 0, or +1.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Referencing other instruments in indicator
Collapse
X
-
Referencing other instruments in indicator
Hi, I am looking to reference my default instrument list with an indicator that will give a value for each of them. I am then looking to get the average value for the indicator of all the instruments to output.
The indicator plots a value of -1, 0, or +1.Tags: None
-
Hello brucelevy,
Thank you for your post.
You would need to use Add() to add each instrument into the indicator or strategy. Then use the proper bars in progress index and bars array when necessary. Please go to Tools > Edit NinjaScript > Strategy > SampleMultiInstrument for and example. Please visit the following link for more information: http://ninjatrader.com/support/helpG...nstruments.htm
You can use unsupported code to add every instrument from an instrument list. For example:
Code:NinjaTrader.Cbi.InstrumentList list1 = NinjaTrader.Cbi.InstrumentList.GetObject("FOREX"); foreach (Instrument i in list1.Instruments) { Add(i.FullName, PeriodType.Minute, 5); }
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
28 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
183 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
337 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
261 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment