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 CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      24 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      25 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-25-2026, 09:53 PM
      0 responses
      30 views
      0 likes
      Last Post CaptainJack  
      Started by CaptainJack, 03-25-2026, 09:51 PM
      0 responses
      18 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 03-23-2026, 11:13 AM
      0 responses
      28 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X