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 CarlTrading, 03-31-2026, 09:41 PM
        1 response
        72 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        39 views
        0 likes
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        63 views
        2 likes
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        63 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        53 views
        0 likes
        Last Post CarlTrading  
        Working...
        X