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

how to check 3 bars later to see if condition is still true

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

    how to check 3 bars later to see if condition is still true

    I wrote a code that when certain conditions are met the CandleOutlineBrush paints a certain color, it plays a sound.

    I wanted to know how to see if I could check if the condition is still true on the 3rd candle and play a different sound

    the sound plays on if (this.IsFirstTickOfBar) I want to play a different sound than the initial sound as a confirmation as the color may change again before the candle closes

    #2
    Hello Kylemcfar57x,

    Welcome to the NinjaTrader forums!

    You can use an int variable to know how many bars has passed.

    For example if you set the initial value to -1, this would mean no bar number has been set.

    Then when the first condition happens, set the bar number.

    private int firstConditionBar = -1;

    if (Close[0] > Open[0]) // conditions
    {
    firstConditionBar = CurrentBar;
    }

    if (CurrentBar - firstConditionBar == 3 && Close[0] > Open[0])
    {
    Print("condition true 3 bars later");
    }

    Below I am providing a link to a forum post with helpful resources on getting started with C# and NinjaScript.
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by futtrader, 04-21-2024, 01:50 AM
    4 responses
    41 views
    0 likes
    Last Post futtrader  
    Started by Option Whisperer, Today, 09:55 AM
    1 response
    11 views
    0 likes
    Last Post bltdavid  
    Started by port119, Today, 02:43 PM
    0 responses
    7 views
    0 likes
    Last Post port119
    by port119
     
    Started by Philippe56140, Today, 02:35 PM
    0 responses
    7 views
    0 likes
    Last Post Philippe56140  
    Started by 00nevest, Today, 02:27 PM
    0 responses
    7 views
    0 likes
    Last Post 00nevest  
    Working...
    X