Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to get the highest and lowest value from a group of indicators?

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

    How to get the highest and lowest value from a group of indicators?

    How to get the highest and lowest value from a group of indicators?

    So I have a group of indicators to compare values.
    SMA1[0], SMA2[0], SMA3[0], EMA1[0], EMA2[0], EMA3[0]

    I would like to reach to this point:

    Code:
    If
    (
    (HighestValue - LowestValue) >  0.001)
    )
    {
       // do this
    }
    Thank you!

    #2
    Originally posted by johnnybegoode View Post
    How to get the highest and lowest value from a group of indicators?

    So I have a group of indicators to compare values.
    SMA1[0], SMA2[0], SMA3[0], EMA1[0], EMA2[0], EMA3[0]

    I would like to reach to this point:

    Code:
    If
    (
    (HighestValue - LowestValue) > 0.001)
    )
    {
    // do this
    }
    Thank you!
    Offhand, I can think of any of 3 ways:
    1. Put them in a list; sort the list; use first and last values of the sorted list.
    2. Put them in a list and use LINQ to get the max and min values
    3. Use a succession of Math.Max() and Math.Min() operations on the values; do arithmetic on the final results of the operations.

    Comment


      #3
      Hello johnnybegoode,

      Thanks for your post.

      With a defined group of indicators, on each OnBarUpdate() you could assign the indicators current values into an array and then use the Array.Min and Array.Max to determine the values of interest.

      This is more of a c# type question than a ninjascript question so I will provide links to internet sources to get you started, you may want to look for further tutorials on C# array.

      To get the Min/Max: https://www.dotnetperls.com/max


      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      88 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      134 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      68 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      118 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      67 views
      0 likes
      Last Post PaulMohn  
      Working...
      X