Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

how can I know if a bar closes?

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

    how can I know if a bar closes?

    Hi,
    I have a strategy which I'm running tick-by-tick, meaning Calculate on Bar Close = False.

    However, I have some calculations I would like to perform only on bar close, so is there a way to tell if OnBarUpdate is called when the bar closes?

    Also, I would like to add another entry to my strategy, but I would like to avoid 2 entries on the same bar (and still keep Calculate on Bar Close = False). What is a good way of achieving that?

    Thanks.

    #2
    Hello gogetit,

    You can monitor for a new bar with FirstTickOfBar.

    This sample can help use this property to combine CalculateOnBarClose true / false logic in the same script:
    Ryan M.NinjaTrader Customer Service

    Comment


      #3
      Thanks Ryan!

      Comment


        #4
        You're welcome. For the question on preventing multiple entries on the same bar, you can use BarsSinceExit() for this.

        if (myEntryConditions && (BarsSinceExit() == -1 || BarsSinceExit() > 0))
        {
        //EnterHere
        }
        Ryan M.NinjaTrader Customer Service

        Comment


          #5
          Did you mean BarsSinceEntry? I would like to add a second entry to the same trade, and just to make sure it's not on the same bar.
          Thanks.

          Comment


            #6
            Originally posted by gogetit View Post
            Did you mean BarsSinceEntry? I would like to add a second entry to the same trade, and just to make sure it's not on the same bar.
            Thanks.
            Gogetit,

            Yes in that case you would want to use BarsSinceEntry.
            MatthewNinjaTrader Product Management

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by pmachiraju, 11-01-2023, 04:46 AM
            8 responses
            148 views
            0 likes
            Last Post rehmans
            by rehmans
             
            Started by mattbsea, Today, 05:44 PM
            0 responses
            5 views
            0 likes
            Last Post mattbsea  
            Started by RideMe, 04-07-2024, 04:54 PM
            6 responses
            33 views
            0 likes
            Last Post RideMe
            by RideMe
             
            Started by tkaboris, Today, 05:13 PM
            0 responses
            5 views
            0 likes
            Last Post tkaboris  
            Started by GussJ, 03-04-2020, 03:11 PM
            16 responses
            3,282 views
            0 likes
            Last Post Leafcutter  
            Working...
            X