MqlTick time property: server or client

 
Is the time of Mqltick object coming from the broker/data provider server or it's just a timestamp taken by the client (metatrader) on every incoming new tick ?
Documentation on MQL5: Constants, Enumerations and Structures / Data Structures / Price Data Structure
Documentation on MQL5: Constants, Enumerations and Structures / Data Structures / Price Data Structure
  • www.mql5.com
Price Data Structure - Data Structures - Constants, Enumerations and Structures - MQL5 Reference - Reference on algorithmic/automated trading language for MetaTrader 5
 
Naourass Derouichi:
Is the time of Mqltick object coming from the broker/data provider server or it's just a timestamp taken by the client (metatrader) on every incoming new tick ?

Server time like TimeCurrent() - compare it, locale time is available via TimeLocal().

Btw you can find everything if the Reference just press F1 in the Editor.

 
Carl Schreiber #:

Server time like TimeCurrent() - compare it, locale time is available via TimeLocal().

Btw you can find everything if the Reference just press F1 in the Editor.

Thank you! That was very helpful!