Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Best way to get PnL of most recent trade?

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

    Best way to get PnL of most recent trade?

    In the OnExecution() event, what's the best way to get the PnL of the most recent trade (when I don't have the OrderID)?

    BACKGROUND:
    In my strategy, in the OnBarUpdate(), I execute EnterLong() or EnterShort(). So, in the OnExecution() event, I want to send email and include the PnL of the most recent trade.

    #2
    Off the top of my head, I am not sure. I suggest printing out all values on the execution object passed in and inspect them to see what you may be able to use.
    RayNinjaTrader Customer Service

    Comment


      #3
      This will do it for me.

      Perfermance.AllTrades[0] refers to the last executed trade.

      protected override void OnExecution(IExecution execution)
      {
      Trade lastTrade = Performance.AllTrades[0];
      if (lastTrade != null) SendNotification(lastTrade.ProfitPoints.ToString() )
      }

      (SendNotification is my helper procedure that sends email)

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by GussJ, 03-04-2020, 03:11 PM
      16 responses
      3,279 views
      0 likes
      Last Post Leafcutter  
      Started by WHICKED, Today, 12:45 PM
      2 responses
      19 views
      0 likes
      Last Post WHICKED
      by WHICKED
       
      Started by Tim-c, Today, 02:10 PM
      1 response
      8 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by Taddypole, Today, 02:47 PM
      0 responses
      5 views
      0 likes
      Last Post Taddypole  
      Started by chbruno, 04-24-2024, 04:10 PM
      4 responses
      51 views
      0 likes
      Last Post chbruno
      by chbruno
       
      Working...
      X