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

Search Array for value.

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

    Search Array for value.

    Im trying to search an array for a value and I found this on StackOverflow nut wont work in NT can anyone tell me why and if there is a way of doing this,


    In .NET 3.5 or higher, using LINQ:

    bool found = yourArray.Contains(yourValue);

    #2
    Hello GKonheiser

    Thank you for the question,

    You could try using the Array.Find method to search the array for a value and depending on the result you can use an if statement to make a true or false statement for a bool value.

    Here is a example that will run in NinjaScript

    Code:
    string[] names = {"Ninja", "Trader", "Strategy"};
    string result = Array.Find(names, element => element.StartsWith("Strategy", StringComparison.Ordinal));
    if(result != null)
    {
       Print("Found");
    } else {
       Print("Not Found");
    }
    Another way you could write this to directly convert the results to a bool would be using a ternary operator. Here is another example

    Code:
    bool foundOrNotFound = false;
    string[] names = {"Ninja", "Trader", "7"};
    string result = Array.Find(names, element => element.StartsWith("7", StringComparison.Ordinal));
    [B]foundOrNotFound = (result != null) ? true : false;[/B]
    Print(foundOrNotFound);
    Here is more information regarding the Array.Find method with some examples.
    Use the Array.Find and Array.FindLast methods to search arrays with lambda Predicates.


    Please let me know if I may be of additional assistance.
    JesseNinjaTrader Customer Service

    Comment


      #3
      Thanks Jesse,

      I ended up doing this,

      Array.IndexOf(pivots, lev[i+1]) > -1

      haven't compiled yet thou so hope it works

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by judysamnt7, 03-13-2023, 09:11 AM
      4 responses
      57 views
      0 likes
      Last Post DynamicTest  
      Started by ScottWalsh, Today, 06:52 PM
      4 responses
      36 views
      0 likes
      Last Post ScottWalsh  
      Started by olisav57, Today, 07:39 PM
      0 responses
      7 views
      0 likes
      Last Post olisav57  
      Started by trilliantrader, Today, 03:01 PM
      2 responses
      19 views
      0 likes
      Last Post helpwanted  
      Started by cre8able, Today, 07:24 PM
      0 responses
      9 views
      0 likes
      Last Post cre8able  
      Working...
      X