Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How can I get the current time of the broker (server) in the format "HH:mm:ss".
Collapse
X
-
How can I get the current time of the broker (server) in the format "HH:mm:ss".
How can I get the current time of the broker (server) in the format "HH:mm:ss". When I get Time[0].ToString("HH:mm:ss") even using Calculate.OnEachTick, I only get hours and minutes, without seconds.Tags: None
-
Hello Goolden,
Thank you for your post.
What time frame are you running your script on, generally?
For example, let's say I have an ES 12-19 15 minute chart, and I put this in On Bar Update:
Print(Time[0].ToString("HH:mm:ss.FFF"));
Assuming there's no secondary series or bars in progress checks, even if you set the script to calculate on each tick, this will just repeatedly print the closing time of the bar. This isn't the current time - Time[0] will always give you the closing time of the current bar, so even running on each tick that's not going to change.
If you want to print what time each tick comes in you've got some options.
System.DateTime.Now.TimeOfDay will print you the hours, minutes, seconds, and milliseconds.
If you're interested in knowing when each tick came in, you can add a single tick data series in State == State.Configure and then print the time only when that series is being processed:
Whether or not your provider timestamps the data on their end is listed in our help guide here:Code:else if (State == State.Configure) { AddDataSeries(BarsPeriodType.Tick,1); } } protected override void OnBarUpdate() { if(BarsInProgress ==1) { Print(Time[0].ToString("HH:mm:ss.FFF")); // example result: 08:10:22.025; these results may vary depending on your data provider and how/if they timestamp the data. } Print(System.DateTime.Now.TimeOfDay); // example result: 08:10:22.1080620 }
Please let us know if we may be of further assistance to you.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
52 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
29 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
194 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
355 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
274 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment