Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Query # of loaded instruments
Collapse
X
-
Hello ntbone,
Thank you for your post.
There wouldn't be a supported way to get the full number of loaded instruments in every window, no. The issue is that some windows, such as the Market Analyzer, cannot be directly accessed via NinjaScript.
While there may be an unsupported way to achieve this, I am unaware of one.
Please let us know if we may be of further assistance to you.
-
The following code snippet seems to works when connected to a data provider. It is still possible the instrument may be loaded and in use, but this at least verifies its not getting market data.
Code:int numberOfInstrumentsWithMarketData = 0; foreach(var instrument in Instrument.All) { if(instrument.MarketData != null && instrument.MarketData.Last != null) { Print(instrument.FullName); numberOfInstrumentsWithMarketData++; } } Print("There are " + numberOfInstrumentsWithMarketData + " instruments with market data.");Last edited by ntbone; 10-17-2020, 02:14 PM.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
368 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
237 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
205 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
290 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
250 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment