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 algospoke, 04-17-2024, 06:40 PM
    3 responses
    26 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Started by bmartz, 03-12-2024, 06:12 AM
    3 responses
    28 views
    0 likes
    Last Post NinjaTrader_Zachary  
    Started by Aviram Y, Today, 05:29 AM
    2 responses
    9 views
    0 likes
    Last Post Aviram Y  
    Started by gentlebenthebear, Today, 01:30 AM
    1 response
    8 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Started by cls71, Today, 04:45 AM
    1 response
    7 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Working...
    X