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 maybeimnotrader, Today, 05:46 PM
      0 responses
      6 views
      0 likes
      Last Post maybeimnotrader  
      Started by quantismo, Today, 05:13 PM
      0 responses
      6 views
      0 likes
      Last Post quantismo  
      Started by AttiM, 02-14-2024, 05:20 PM
      8 responses
      166 views
      0 likes
      Last Post jeronymite  
      Started by cre8able, Today, 04:22 PM
      0 responses
      8 views
      0 likes
      Last Post cre8able  
      Started by RichStudent, Today, 04:21 PM
      0 responses
      5 views
      0 likes
      Last Post RichStudent  
      Working...
      X