Is there a way to get the exact UTC time of the executed trade irrespective of the local time or the exchange timezone or the NT settings timezone?
private void OnExecutionUpdate(object sender, ExecutionEventArgs e){
Print(e.Execution.Time.ToString("yyyy-MM-dd HH:mm:ss")) // this gives the output in the localtimezone - how can I make sure I get UTC irrespectiveof ANY date settings?
}
Thank you!

Comment