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 argusthome, 03-08-2026, 10:06 AM
        0 responses
        88 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        48 views
        0 likes
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        30 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Started by TheRealMorford, 03-05-2026, 06:15 PM
        0 responses
        34 views
        0 likes
        Last Post TheRealMorford  
        Started by Mindset, 02-28-2026, 06:16 AM
        0 responses
        68 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Working...
        X