I would like to make a small indicator that shows how much time was needed for eg. a 200 tick bar to get created.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Time of bar open and close
Collapse
X
-
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
-
The time taken to build the last bar is:Originally posted by Zapzap View PostIs 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.
regardless of the type of bar you are using. If you want that in seconds, you will have to cast it correctly, thusCode:TimeSpan timeElapsed = Time[2] - Time[1];
By the same token, the time that has elapsed since the last bar, provided you have COBC = false, is Time[0] - Time[1].Code:timeElapsed.TotalSeconds
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.
- Likes 1
Comment
-
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
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
574 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
333 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment