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 Hwop38, 05-04-2026, 07:02 PM
      0 responses
      142 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by CaptainJack, 04-24-2026, 11:07 PM
      0 responses
      295 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      240 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      339 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      172 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Working...
      X