Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to load instrument list

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

    How to load instrument list

    Is there a way to load in ninjascript
    a) an instrument list, and
    b) the list of instrument lists?

    I'm using this in an addon.

    #2
    Hello GrumpyTrader,

    Thank you for your inquiry.

    To answer your questions:
    • You can access a particular instrument list by doing the following:
      Code:
      InstrumentList theInstrumentList;
      
      foreach (InstrumentList instrumentList in InstrumentList.InstrumentLists)
      {
           if (instrumentList.Name == "Test")
           {
                theInstrumentList = instrumentList;
           }
      }
      You can then loop through each of the instruments in that particular list by:
      Code:
      foreach (Instrument instrument in theInstrumentList.Instruments)
      {
           Print(instrument.FullName);
      }
    • You would be able to loop through the instrument lists in your platform by doing the following:
      Code:
      foreach (InstrumentList instrumentList in InstrumentList.InstrumentLists)
      {
           Print(instrumentList.Name);
      }
    `

    Please, let us know if we may be of further assistance.
    Zachary G.NinjaTrader Customer Service

    Comment


      #3
      Thanks Zachary!

      or in linq ...
      Code:
      IEnumerable<InstrumentList> sym = InstrumentList.InstrumentLists.Where((il) => il.Name == "DOW 30");
      Last edited by GrumpyTrader; 12-10-2015, 07:24 PM.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      24 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      25 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-25-2026, 09:53 PM
      0 responses
      30 views
      0 likes
      Last Post CaptainJack  
      Started by CaptainJack, 03-25-2026, 09:51 PM
      0 responses
      18 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 03-23-2026, 11:13 AM
      0 responses
      27 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X