Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Close position - Multiple events

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

    Close position - Multiple events

    Please excuse a newbie question: I am trying to close a position based on one of either of two events occurring. How do I code this?


    // Condition set 2
    if (CrossBelow(LinRegSlope(8).LRSlope, MyInput0, 1))

    {
    ExitLong(
    "", "");
    }


    2nd event to possibly occur would be:

    if (CrossBelow(Typical, CalculateValueArea(false, 8, 30, 0.7, "VWTPO", 6.75).VAt, 1)



    If either event occurs, I would like the long position to be closed. No further orders should be placed other than to close the position. Should this be in the same condition set or a new condition? A little confused right now. If someone could show how to do the code, it would be greatly appreciated. Thanks in advance!

    #2
    Two separate sets. The code will evaluate the first one first. Then it will evaluate the second.
    Josh P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by NullPointStrategies, Today, 05:17 AM
    0 responses
    52 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    130 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    70 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    43 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    48 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X