New tick during EA execution.

 
What is actually happening when EA is in it's start function end a new tick comes?

-Is the tick neglected?
-Is the EA interrupted?
-Is a new thread created?
-Is the tick qeued?
-or maybe something else?

Thanks,

Michal
 
What is actually happening when EA is in it's start function end a new tick comes?

-Is the tick neglected?
-Is the EA interrupted?
-Is a new thread created?
-Is the tick qeued?
-or maybe something else?

Thanks,

Michal

Good question!
I am interested to know too.
Is the RefreshRates() function used to compensate for it?
 
New tick will be ignored.
If RefreshRates function returns true then the fact of incoming tick(s) discovered.
You can also compare Bid and MarketInfo(Symbol(),MODE_BID)
Reason: