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 NullPointStrategies, Today, 05:17 AM
    0 responses
    50 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    126 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    69 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    42 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    46 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X