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 cre8able, Yesterday, 07:24 PM
      1 response
      13 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by cocoescala, 10-12-2018, 11:02 PM
      6 responses
      939 views
      0 likes
      Last Post Jquiroz1975  
      Started by gbourque, Today, 06:39 AM
      1 response
      4 views
      0 likes
      Last Post NinjaTrader_Erick  
      Started by cmtjoancolmenero, Yesterday, 03:58 PM
      1 response
      17 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by benmarkal, Yesterday, 12:52 PM
      3 responses
      23 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Working...
      X