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

Time of bar open and close

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

    Time of bar open and close

    Is there a way to get the open and close time of a tick-chart bar?

    I would like to make a small indicator that shows how much time was needed for eg. a 200 tick bar to get created.

    #2
    Hello Zapzap,
    Thanks for writing in and I am happy to assist you.

    Unlike minute based bars where the end time can be predetermined, the end time of the tick bars cannot be predetermined. As such you cannot make an indicator which determines the end time of a tick bar.

    I look forward to assist you further.
    JoydeepNinjaTrader Customer Service

    Comment


      #3
      Originally posted by Zapzap View Post
      Is there a way to get the open and close time of a tick-chart bar?

      I would like to make a small indicator that shows how much time was needed for eg. a 200 tick bar to get created.
      The time taken to build the last bar is:
      Code:
      TimeSpan timeElapsed = Time[2] - Time[1];
      regardless of the type of bar you are using. If you want that in seconds, you will have to cast it correctly, thus
      Code:
      timeElapsed.TotalSeconds
      By the same token, the time that has elapsed since the last bar, provided you have COBC = false, is Time[0] - Time[1].

      That having been said, you sound like you are reinventing the wheel: NT ships with an indicator called BarTimer that does what you want.
      Last edited by koganam; 02-22-2012, 01:22 PM.

      Comment


        #4
        Joydeep: I don't want to predetermine anything. I'd like to know "how much time was needed for a bar"

        koganam: Thanks a lot I knew it was easy, I haven't programmed NT for 3 years though.

        BTW: BarTimer is an indicator for minute based charts showing how much time is left. So I needed the new wheels.
        Last edited by Zapzap; 02-22-2012, 01:42 PM.

        Comment


          #5
          Originally posted by Zapzap View Post
          ...BTW: BarTimer is an indicator for minute based charts showing how much time is left. So I needed the new wheels.
          Drat! Now why did I think that it was the other way round, and would only work on non-fixed timeframe charts? I must be going bonkers.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by jclose, Today, 09:37 PM
          0 responses
          6 views
          0 likes
          Last Post jclose
          by jclose
           
          Started by WeyldFalcon, 08-07-2020, 06:13 AM
          10 responses
          1,414 views
          0 likes
          Last Post Traderontheroad  
          Started by firefoxforum12, Today, 08:53 PM
          0 responses
          11 views
          0 likes
          Last Post firefoxforum12  
          Started by stafe, Today, 08:34 PM
          0 responses
          11 views
          0 likes
          Last Post stafe
          by stafe
           
          Started by sastrades, 01-31-2024, 10:19 PM
          11 responses
          169 views
          0 likes
          Last Post NinjaTrader_Manfred  
          Working...
          X