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

Is there a way to get the last exit price in a strategy?

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

    Is there a way to get the last exit price in a strategy?

    Is there a way to get the last exit price in a strategy?

    #2
    Hello ronaldgreene828, thanks for writing in.

    This can be accessed through the SystemPerformance class:

    if (SystemPerformance.AllTrades.Count > 1)
    {
    Trade lastTrade = SystemPerformance.AllTrades[SystemPerformance.AllTrades.Count - 1];

    Print(lastTrade.Exit.Price);
    }

    Another way to get this would be to use OnExecutionUpdate and capture the last exit price every time an exit is performed:


    Please implement this within your strategy and let me know if any questions come up.
    Chris L.NinjaTrader Customer Service

    Comment


      #3
      Thanks very much and sorry for the delayed response due to work taking me away from this project.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by gbourque, Today, 06:39 AM
      0 responses
      2 views
      0 likes
      Last Post gbourque  
      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  
      Started by helpwanted, Today, 03:06 AM
      1 response
      20 views
      0 likes
      Last Post sarafuenonly123  
      Started by Brevo, Today, 01:45 AM
      0 responses
      12 views
      0 likes
      Last Post Brevo
      by Brevo
       
      Working...
      X