Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

X number of equal highs in the last Y bars

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

    X number of equal highs in the last Y bars

    How can I efficiently test if there have been a certain number of equal bar highs within a specified lookback period?

    #2
    drmartell, there are a number of methods to accomplish this. You can do it however you wish, there are no recommended methods.
    AustinNinjaTrader Customer Service

    Comment


      #3
      I think I was making this more complicated than it needed to be in my mind.

      Since I only need to test prior bars against the current bar, I used:

      Code:
      for (int x = 0; x < 20; x++)
      {
            if (High[0] == High[x])
            HighCount++;
      }

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by SalmaTrader, 07-07-2026, 10:26 PM
      0 responses
      35 views
      0 likes
      Last Post SalmaTrader  
      Started by CarlTrading, 07-05-2026, 01:16 PM
      0 responses
      20 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 06-17-2026, 10:32 AM
      0 responses
      13 views
      0 likes
      Last Post CaptainJack  
      Started by kinfxhk, 06-17-2026, 04:15 AM
      0 responses
      19 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 06-17-2026, 04:06 AM
      0 responses
      22 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Working...
      X