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 SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    46 views
    0 likes
    Last Post SalmaTrader  
    Started by CarlTrading, 07-05-2026, 01:16 PM
    0 responses
    22 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 06-17-2026, 10:32 AM
    0 responses
    14 views
    0 likes
    Last Post CaptainJack  
    Started by kinfxhk, 06-17-2026, 04:15 AM
    0 responses
    20 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 06-17-2026, 04:06 AM
    0 responses
    22 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X