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