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 NullPointStrategies, Today, 05:17 AM
    0 responses
    50 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    126 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    69 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    42 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    46 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X