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 charlesugo_1, 05-26-2026, 05:03 PM
        0 responses
        55 views
        0 likes
        Last Post charlesugo_1  
        Started by DannyP96, 05-18-2026, 02:38 PM
        1 response
        142 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 05-11-2026, 05:56 AM
        0 responses
        160 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 05-10-2026, 08:12 PM
        0 responses
        96 views
        0 likes
        Last Post CarlTrading  
        Started by Hwop38, 05-04-2026, 07:02 PM
        0 responses
        276 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Working...
        X