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 AaronKoRn, Today, 09:49 PM
    0 responses
    7 views
    0 likes
    Last Post AaronKoRn  
    Started by carnitron, Today, 08:42 PM
    0 responses
    9 views
    0 likes
    Last Post carnitron  
    Started by strategist007, Today, 07:51 PM
    0 responses
    10 views
    0 likes
    Last Post strategist007  
    Started by StockTrader88, 03-06-2021, 08:58 AM
    44 responses
    3,980 views
    3 likes
    Last Post jhudas88  
    Started by rbeckmann05, Today, 06:48 PM
    0 responses
    9 views
    0 likes
    Last Post rbeckmann05  
    Working...
    X