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 charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      66 views
      0 likes
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      149 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      162 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 05-10-2026, 08:12 PM
      0 responses
      99 views
      0 likes
      Last Post CarlTrading  
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      286 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Working...
      X