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 argusthome, 03-08-2026, 10:06 AM
      0 responses
      75 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      45 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      26 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      32 views
      0 likes
      Last Post TheRealMorford  
      Started by Mindset, 02-28-2026, 06:16 AM
      0 responses
      62 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X