Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Query # of loaded instruments

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Query # of loaded instruments

    Is there a way to query the # of loaded instruments or # of instruments in use for the entire application?

    #2
    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.
    Kate W.NinjaTrader Customer Service

    Comment


      #3
      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 TraderBCL, Today, 04:38 AM
      2 responses
      16 views
      0 likes
      Last Post TraderBCL  
      Started by martin70, 03-24-2023, 04:58 AM
      14 responses
      106 views
      0 likes
      Last Post martin70  
      Started by Radano, 06-10-2021, 01:40 AM
      19 responses
      609 views
      0 likes
      Last Post Radano
      by Radano
       
      Started by KenneGaray, Today, 03:48 AM
      0 responses
      5 views
      0 likes
      Last Post KenneGaray  
      Started by thanajo, 05-04-2021, 02:11 AM
      4 responses
      471 views
      0 likes
      Last Post tradingnasdaqprueba  
      Working...
      X