Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to know the bar last trade was closed?

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

    How to know the bar last trade was closed?

    Hi:

    I'm trying to implement an strategy, and I need to know, for the last trade executed, which was the bar of the close of the trade.

    In other words, which bar caused the target or stop loss to be filled? How many bars ago did my last trade close?

    I guess there must be a way to know it, but I couldn't find it. Any help will be appreciated!

    #2
    One simple way can be to implement OnExecution method. This method gets invoked whenever there is a execution.

    In this method, initialize a global integer variable and then on each OnBarUpdate increment the variable by 1. So you will know at any time, how many bars have passed since the last execution.

    Hope this helps.

    Comment


      #3
      Pakricard,

      Thank you for your post.

      StockFundoo is correct. You can declare your variable from the variables region first then increment it in the OnBarUpdate() method.

      When an execution gets called you would want to reset the variable in the OnExecution() method so you can have it start over in the counting.

      Below is a link for the OnExecution() method -
      OnExecution
      Cal H.NinjaTrader Customer Service

      Comment


        #4
        Originally posted by StockFundoo View Post
        One simple way can be to implement OnExecution method. This method gets invoked whenever there is a execution.

        In this method, initialize a global integer variable and then on each OnBarUpdate increment the variable by 1. So you will know at any time, how many bars have passed since the last execution.

        Hope this helps.
        Thanks! Simple and it worked like a charm

        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