CopyTicksRange () does not work correctly in MQL5. a - page 7

 
Sergei Patrushev #:

The description ofCopyTicksRange () states that the operator counts time in milliseconds,

I had an idea to collect into an array Ticks for a few minutes, but for some reason it works:

Figured it out: since the date is requested in seconds, it needs to be converted to milliseconds:

int len1 = CopyTicksRange(_Symbol,arr_ticks,COPY_TICKS_INFO,start*1000,end*1000);