Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Using lists

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

    Using lists

    Hi!

    I was wondering about using lists. Is there any example where I can see its use?

    I'm trying to solve this problem: (I don't know the proper syntax, but I'm trying to make it clear)

    1. I have identified a bar (i bars ago) and I want to do a search around that bar to get its highest high, for example in the range (i +r ----> i-r).
    2. I can create some kind of list and add the elements:
    for (int x= i-r,x < i+r+1;x++)
    add (high[x], highlist);
    3. Then sort with the proper command to get the maximum.:
    GetHighOfList(highlist)

    Perhaps there is a native function to do this but I've searched and didn't see anything.

    Thanks in advance,

    Sergio

    #2
    Hello Sergio,
    Thanks for writing in and I am happy to assist you.

    You can use the HighestBar fucntion to find the highest bar. Please refer here to know more



    Please let me know if I can assist you any further.
    JoydeepNinjaTrader Customer Service

    Comment


      #3
      But that only work if I want to search from last bar.

      Let's explain a bit more:

      With:

      HighestBar(High, 6) I will check bars [0],[1],...[6]

      but what I want is searching around bar [16]

      and check [19],[18]...[16]...[14],[13] only

      not [19],[18]...[0]

      Hope this helps to know what I want.

      Comment


        #4
        Hello sercava,
        Thanks for the clarification.

        Please use the MAX function to do it. A sample code will be like
        Code:
        if (CurrentBar > 19)
        double highestHigh = MAX(High, 6)[13];


        Please let me know if I can assist you any further.
        JoydeepNinjaTrader Customer Service

        Comment


          #5
          That's what I need, thanks. Will code it.

          Have fun!

          Sergio

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by timko, Today, 06:45 AM
          1 response
          7 views
          0 likes
          Last Post gaz0001
          by gaz0001
           
          Started by Waxavi, 04-19-2024, 02:10 AM
          3 responses
          41 views
          0 likes
          Last Post gaz0001
          by gaz0001
           
          Started by Max238, Today, 01:28 AM
          2 responses
          26 views
          0 likes
          Last Post NinjaTrader_ChristopherJ  
          Started by Shansen, 08-30-2019, 10:18 PM
          25 responses
          949 views
          0 likes
          Last Post NinjaTrader_BrandonH  
          Started by JonesJoker, 04-22-2024, 12:23 PM
          8 responses
          45 views
          0 likes
          Last Post JonesJoker  
          Working...
          X