Announcement

Collapse
No announcement yet.

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.


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

    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 CarlTrading, 03-31-2026, 09:41 PM
      1 response
      157 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      91 views
      1 like
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      143 views
      2 likes
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      130 views
      1 like
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      107 views
      0 likes
      Last Post CarlTrading  
      Working...
      X