I'm not able to understand how the timezone system works on NT8.
Here's an example:
System/OS time: Amsterdam
NT time: US/Canada (ET) (Exchange time)
Trade executed on: 10:07:26 (24-hr)
`e.Execution.Time.ToString("yyyy-MM-dd HH:mm:ss")`
Returns: 2023-02-13 10:07:26
`e.Execution.Time.ToUniversalTime().ToString("yyyy-MM-dd HH:mm:ss")`
Returns: 2023-02-13 09:07:26
How is the UTC time correct? The correct UTC time is 15:07:26.
Now, my question is: How can I get the *correct* UTC time irrespective of NT zone or user's computer/OS zone?
Thank you

Comment