Announcement

Collapse
No announcement yet.

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 CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    56 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    33 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    195 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    359 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    280 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X