trader / Publications
Forum
Missing ticks
I wrote small script to print out ticks with their respective tick number on a selected period. The code is the following: int start() { Print ( StringConcatenate ( "[" ,Volume[ 0 ], "] " , DoubleToStr (Bid, 5 ))); return ( 0 ); } And here's is the result: 2012.04 . 04 23 : 26 : 31 testTicks
MQL4 ticks processing
MQL4 manual states that: "An Advisor starts to run with every incoming tick for a given symbol. The Advisor will not be launched for a new, tick if it is processing the previous one at this moment (i.e., the Advisor has not completed its operation yet)." My question is it possible to overcome this