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 ageeholdings, Today, 07:43 AM
        0 responses
        7 views
        0 likes
        Last Post ageeholdings  
        Started by pibrew, Today, 06:37 AM
        0 responses
        4 views
        0 likes
        Last Post pibrew
        by pibrew
         
        Started by rbeckmann05, Yesterday, 06:48 PM
        1 response
        14 views
        0 likes
        Last Post bltdavid  
        Started by llanqui, Today, 03:53 AM
        0 responses
        6 views
        0 likes
        Last Post llanqui
        by llanqui
         
        Started by burtoninlondon, Today, 12:38 AM
        0 responses
        12 views
        0 likes
        Last Post burtoninlondon  
        Working...
        X