Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How can I get the current time of the broker (server) in the format "HH:mm:ss".

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

    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.

    #2
    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:

    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
            }
    Whether or not your provider timestamps the data on their end is listed in our help guide here:



    Please let us know if we may be of further assistance to you.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by NullPointStrategies, Today, 05:17 AM
    0 responses
    46 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    126 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    66 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    42 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    46 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X