Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to find charts with "6 higher closes in a row" per day?

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

    How to find charts with "6 higher closes in a row" per day?

    I'm a newbie. Wnat to make a Market Analyzer (I think) that would show out of a list of stocks those stocks that would have 6 higher (or lower) closes in a row.

    Thanks
    David

    #2
    dgeller,

    Something like this would work.

    Code:
    private int closecount = 0;
    
    private override void OnBarUpdate()
    {
    
       if( Close[0] > Close[1] )
       {
           closecount++;
       }
       else
       {
           closecount = 0;
       }
    
       if( closecount >= 6)
       {
           Plot0.Set(1);
       }
       else
       {
          Plot0.Set(0);
       }
    
    }
    Then in market analyzer, you can manually create a filter or alert that would check if Plot0 = 1.

    Please let me know if I may assist further.
    Adam P.NinjaTrader Customer Service

    Comment


      #3
      Where to start

      Hi Adma, Thanks for your quick response.
      Would I enter this? Would it go somepalce in Market Anylizer? Thanks, David

      Comment


        #4
        dgeller,

        This would be code for your own indicator that you create. Then, you can create a column in the market analyzer that uses this indicator. From there the configuration is all manual in the market analyzer.

        Here is a link to our educational resources.

        Adam P.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        637 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        366 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        107 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        569 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        571 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X