Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to move my stop to be+1 after so many ticks

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

    How to move my stop to be+1 after so many ticks

    Hi all,

    Please bear with me as I have never coded before. I have created a strategy using the wizard which I am happy with. I have set a profit target and stop loss in the wizard.

    My stop is set to 15 ticks. How can I move my stop to be+1 after I get 10 ticks of profit in my position. I have not coded before so any assistance would be appreciated

    Thanks

    #2
    newtrader1,

    What you want to do would require custom programming. You will need to unlock the code. Please take a look at this reference sample: http://www.ninjatrader-support2.com/...ead.php?t=3222
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      Thank you very much Josh. I will import and take a look.

      I have a simple strategy setup which is just cross of Moving average. When I apply the strategy to a chart it always enters a postion straight away as the price is already below or above the MA. Is there any way to stop this from happening

      thanks again for your help

      Comment


        #4
        This is most likely a virtual strategy position. Remember a strategy position is not the same as an account position. If you do not want your strategy to calculate out any historical strategy positions you will need to use this in the beginning of the OnBarUpdate() method.

        Code:
        if (Historical)
             return;
        http://www.ninjatrader-support.com/H...istorical.html
        Josh P.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        572 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        331 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        549 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        550 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X