Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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.
    Emily C.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Segwin, 05-07-2018, 02:15 PM
    14 responses
    1,789 views
    0 likes
    Last Post aligator  
    Started by Jimmyk, 01-26-2018, 05:19 AM
    6 responses
    837 views
    0 likes
    Last Post emuns
    by emuns
     
    Started by jxs_xrj, 01-12-2020, 09:49 AM
    6 responses
    3,293 views
    1 like
    Last Post jgualdronc  
    Started by Touch-Ups, Today, 10:36 AM
    0 responses
    13 views
    0 likes
    Last Post Touch-Ups  
    Started by geddyisodin, 04-25-2024, 05:20 AM
    11 responses
    63 views
    0 likes
    Last Post halgo_boulder  
    Working...
    X