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 tsantospinto, 04-12-2024, 07:04 PM
          5 responses
          67 views
          0 likes
          Last Post tsantospinto  
          Started by cre8able, Today, 03:20 PM
          0 responses
          6 views
          0 likes
          Last Post cre8able  
          Started by Fran888, 02-16-2024, 10:48 AM
          3 responses
          48 views
          0 likes
          Last Post Sam2515
          by Sam2515
           
          Started by martin70, 03-24-2023, 04:58 AM
          15 responses
          115 views
          0 likes
          Last Post NinjaTrader_Jesse  
          Started by The_Sec, Today, 02:29 PM
          1 response
          8 views
          0 likes
          Last Post NinjaTrader_Jesse  
          Working...
          X