Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

profit as exit point

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

    profit as exit point

    I'm trying to devise a way to use current profit as a point of exit. I have the following code, but I don't know how to construct the exit around it. Any help would be greatly appreciated.


    if (Performance.RealtimeTrades.Count > 0)
    {
    Trade Trade = Performance.RealtimeTrades[0];

    double Profit = Trade.ProfitCurrency * Trade.Quantity;

    Print ("The last trade's profit is " + Profit);
    }

    #2
    hifreq, you could for example check if current profit is greater as x and then exit the trade if you get a close against your position (for example Close[0] < Close[1] for a long).
    BertrandNinjaTrader Customer Service

    Comment


      #3
      Hi Bertrand. Thanks very much for the direction on this.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by jbays87, Today, 09:46 PM
      0 responses
      4 views
      0 likes
      Last Post jbays87
      by jbays87
       
      Started by popecapllc, 08-09-2023, 07:42 PM
      9 responses
      1,362 views
      0 likes
      Last Post BartMan
      by BartMan
       
      Started by ETFVoyageur, 04-30-2024, 02:04 PM
      11 responses
      101 views
      0 likes
      Last Post ETFVoyageur  
      Started by bubblegum, 03-18-2024, 10:41 AM
      3 responses
      48 views
      0 likes
      Last Post vjsworld  
      Started by JamesK1, Today, 02:48 PM
      1 response
      13 views
      0 likes
      Last Post JamesK1
      by JamesK1
       
      Working...
      X