Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

signal conflicts

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

    signal conflicts

    what are some of the best ways to prevent a new entry or exit signal from closing existing positions?

    #2
    Hello,

    You can use MarketPosition to check your current position and prevent new orders from being processed if your account is not flat at that time.

    Please see our Help Guide article on this function for more information:

    MatthewNinjaTrader Product Management

    Comment


      #3
      this questions applies to signals generated by the automated strategy

      Comment


        #4
        In your automated strategy, you can include a check for the market position in the signal you use to go long or short.

        For example,

        if(MyEntrySignal = true && Position.MarketPosition == MarketPosition.Flat)
        // Go Long

        This way, if you are already in a Long position and receive a signal to go long, it will not trigger the GoLong event as your Position would not be flat at that time.
        MatthewNinjaTrader Product Management

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        657 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        373 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        109 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        574 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        579 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X