Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Specify # of bars in a row that have close higher than open

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

    Specify # of bars in a row that have close higher than open

    I know how to do this by doing the following:

    Code:
    if ((Close[0] > Open[0])
    && (Close[1] > Open[1])
    && (Close[2] > Open[2])
    && (Close[3] > Open[3])
    && (Close[4] > Open[4])
    But what if I want to specify a custom amount of bars using a variable? For instance if I want to enter only when there are 100 bars in a row that have the close above the open. I know I could just keep doing what I did above up to 100 but is there a way to specify "enter when x # of bars in a row have a close higher than open" with a simple line of code?

    Thanks!​

    #2
    Hello yeahdudeman,

    Thank you for your post.

    What you are looking for could be achieved with a for loop that loops through the Close > Open condition for the last 100 bars and keeps a tally of how many of the bars have the close above the open in an int variable. Here is an example loop:

    greenBars = 0;
    for (int i = 0; i <= 100; i++)
    {
    if (Close[i] > Open[i])
    greenBars = greenBars + 1;
    }​

    if (greenBars = 100)
    EnterLong();

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

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    45 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    21 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    31 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    50 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    42 views
    0 likes
    Last Post CarlTrading  
    Working...
    X