Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

NinjaTrader.Cbi.InstrumentList.GetInstruments()...

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

    NinjaTrader.Cbi.InstrumentList.GetInstruments()...

    In my indicator, I'm trying to populate an enum with an InstrumentList. Could you please point me to an example of how to access this?

    Code:
    NinjaTrader.Cbi.InstrumentList.GetInstruments("Futures");

    #2
    Hello,

    Thank you for the question.

    It appears the method you are using would not be the correct method to get a list, it seems instead you would need to use the underlying collection.

    You would either need to loop through the instrument list collection to find the list first, or use linq to find a match in the instrument list. I have provided an example using linq to cut down the size:


    Code:
    InstrumentList myList = NinjaTrader.Cbi.InstrumentList.InstrumentLists.First(list => list.Name == "FOREX");
    if (myList == null) return;
    foreach (Instrument instrument in myList.Instruments)
    {
    	Print(instrument.FullName);
    }

    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment


      #3
      Thank you, got it.

      Comment


        #4
        Hello,

        Glad you were able to get it, the sample will be posted here for anyone that needs a script example as well.

        I look forward to being of further assistance.
        Attached Files
        Last edited by NinjaTrader_Jesse; 05-24-2016, 08:09 AM. Reason: adjusted content
        JesseNinjaTrader Customer Service

        Comment


          #5
          Yes it was my mistake, I had an enum called InstrumentList and it was throwing the error.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by adeelshahzad, Today, 03:54 AM
          5 responses
          32 views
          0 likes
          Last Post NinjaTrader_BrandonH  
          Started by stafe, 04-15-2024, 08:34 PM
          7 responses
          32 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by merzo, 06-25-2023, 02:19 AM
          10 responses
          823 views
          1 like
          Last Post NinjaTrader_ChristopherJ  
          Started by frankthearm, Today, 09:08 AM
          5 responses
          19 views
          0 likes
          Last Post NinjaTrader_Clayton  
          Started by jeronymite, 04-12-2024, 04:26 PM
          3 responses
          43 views
          0 likes
          Last Post jeronymite  
          Working...
          X