Форум по трейдингу, автоматическим торговым системам и тестированию торговых стратегий
fxsaber, 2022.09.01 10:26
// Switching the terminal LiveUpdate state. #include <fxsaber\MultiTester\MTTester.mqh> // https://www.mql5.com/ru/code/26132 void OnStart() { const bool IsLiveUpdate = MTTESTER::IsTerminalLiveUpdate(); if (MessageBox("Current LiveUpdate - " + (IsLiveUpdate ? "ON" : "OFF") + ".\n\nWant to switch?", "LiveUpdate Status", MB_YESNO) == IDYES) MessageBox("Current LiveUpdate - " + ((IsLiveUpdate ? !MTTESTER::TerminalLiveUpdateOFF() : MTTESTER::TerminalLiveUpdateON()) ? "ON." : "OFF.")); }

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi,
how can I disable the MT5 auto update?
Thank you