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, 03-31-2026, 09:41 PM
    1 response
    47 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    23 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    33 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    50 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    42 views
    0 likes
    Last Post CarlTrading  
    Working...
    X