#include response latency

 

Is there any difference in response latency (trade latency) between using the #include method to get other DLLs functions and writing all in only one code?


Thanks

 

#include happens at compile time, not at runtime. Also once the EA is loaded it stays in memory.

Delays induced due to slowness of mql4 is usually¹ not of any concern, other delays (network) are orders of magnitude bigger.

_______
¹) Of course you can always write code that is extremely slow but this should not be the norm with properly coded EAs.

 
7bit:

#include happens at compile time, not at runtime. Also once the EA is loaded it stays in memory.

Delays induced due to slowness of mql4 is usually¹ not of any concern, other delays (network) are orders of magnitude bigger.

_______
¹) Of course you can always write code that is extremely slow but this should not be the norm with properly coded EAs.


Thanks 7bit
Reason: