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 CarlTrading, 03-31-2026, 09:41 PM
      1 response
      67 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      36 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      60 views
      1 like
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      62 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      53 views
      0 likes
      Last Post CarlTrading  
      Working...
      X