Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to set a trailing profit in strategy

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

    How to set a trailing profit in strategy

    Hi everybodies
    Is there anyone, who could help me in building a reverse/trailing profit strategy?
    I try to explain, attaching an image of the instrument I use to trade.
    How could I build a strategy that, while the instrument reach a top, if a position is open, reverse it to the counter direction?
    I hope the file could help you to better understand my intentions

    Emanuele67
    Attached Files

    #2
    Hello Emanuele67,
    Thanks for your note.

    A very simplistic code will be like

    Code:
    if (Close[1] < Open[1] && Close[0] > Open[0])
    {
    	EnterLong();
    }
    else if (Close[1] > Open[1] && Close[0] < Open[0])
    {
    	EnterShort();
    }
    Now run the code with Calculate On Bar Close set to true.
    JoydeepNinjaTrader Customer Service

    Comment


      #3
      Hi NinjaTrader_Joydeep

      Thank you very much for your help
      I try to compile your code and run the strategy

      Emanuele67

      Comment

      Latest Posts

      Collapse

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