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 AveryFlynn, Today, 04:57 AM
      0 responses
      4 views
      0 likes
      Last Post AveryFlynn  
      Started by RubenCazorla, 08-30-2022, 06:36 AM
      3 responses
      79 views
      0 likes
      Last Post PaulMohn  
      Started by f.saeidi, Yesterday, 12:14 PM
      9 responses
      25 views
      0 likes
      Last Post f.saeidi  
      Started by Tim-c, Today, 03:54 AM
      0 responses
      3 views
      0 likes
      Last Post Tim-c
      by Tim-c
       
      Started by FrancisMorro, Today, 03:24 AM
      0 responses
      5 views
      0 likes
      Last Post FrancisMorro  
      Working...
      X