Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Need some suggestions

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

    Need some suggestions

    I know now how to program for nested conditions. What I need to do now is be able to set up sequences of conditions.

    Like if A is or was true for some period of time then check conditions B

    if condition B is true then enter trade.

    What I am looking for is that condition A no longer needs to be true in order to look at condition B, it just has to have happened within some look back period.

    Thanks for any suggestions. I would be curious to know maybe a few ways to go about this.

    #2
    Use flag variables. Something like this pseudocode.

    Code:
    if (A == true)
        AFlag = true;
    
    if (B == true && AFlag == true)
    {
        EnterLong();
        AFlag = false;
    }
    Josh P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    582 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    338 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    103 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    554 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    552 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X