Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Stop loss

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

    Stop loss

    How i can stop my strategy when trade is done. (until my position Rich stop loss or profit target).

    Thank You

    #2
    forexx, please take a look at the reference sample that goes over exactly what you're looking for - Halting a Strategy Once User Defined Conditions Are Met
    AustinNinjaTrader Customer Service

    Comment


      #3
      reply

      You misunderstood my question. I wan't my stratedgy disabled temporarily until my open trade reaches stop loss or at the profit target.

      Comment


        #4
        forexx, you can use the MarketPosition property to determine whether or not you are in a position and act accordingly:
        Code:
        if (Position.MarketPosition != MarketPosition.Flat)
        {
        // you are in a position, do nothing
            return;
        }
        else // you are not in a position
        {
            // put trading code here
        }
        If you decide to use this approach, be sure to set your stops and targets in a section of code that gets executed, or the position will never be closed.
        AustinNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by DannyP96, 05-18-2026, 02:38 PM
        1 response
        27 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 05-11-2026, 05:56 AM
        0 responses
        117 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 05-10-2026, 08:12 PM
        0 responses
        69 views
        0 likes
        Last Post CarlTrading  
        Started by Hwop38, 05-04-2026, 07:02 PM
        0 responses
        226 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Started by CaptainJack, 04-24-2026, 11:07 PM
        0 responses
        417 views
        0 likes
        Last Post CaptainJack  
        Working...
        X