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