Where is CustomTicksAdd in MQL5?

 

I am writing a script to load some custom pairs and the editor does not recognize CustomTicksAdd.

I would like to add ticks to be displayed in the Market Watch window - but the closest thing available seems to be CustomTicksUpdate.

Where and how do I get this function?

 

https://www.mql5.com/en/docs/customsymbols/customticksadd

Additional information

Форум по трейдингу, автоматическим торговым системам и тестированию торговых стратегий

Ошибки, баги, вопросы

fxsaber, 2017.10.04 09:13

генерируется одно TIck-событие для последнего элемента тикового массива и Calculate-события для всех элементов этого же массива.

Documentation on MQL5: Custom Symbols / CustomTicksAdd
Documentation on MQL5: Custom Symbols / CustomTicksAdd
  • www.mql5.com
[in]   An array of tick data of the MqlTick type arranged in order of time from earlier data to more recent ones, i.e. ticks[k].time_msc <= ticks[n].time_msc, if k<n. function only works for custom symbols opened in the Market Watch window. If the symbol is not selected in Market Watch, then you should add ticks using CustomTicksReplace...