MT5 and speed in action - page 77

 

A virtual machine with a ping of 0.6 ms (< 1 ms). Order/position modifications take from several tens to thousands of milliseconds. Server logs show values < 1 ms.

LatencyMon showed such horror.

Check your remote machines. A zero ping is nothing. It may turn out to be more profitable to trade from your home machine.


ZS How to check VPS from MQ is not at all clear.

Resplendence Software - LatencyMon: suitability checker for real-time audio and other tasks
Resplendence Software - LatencyMon: suitability checker for real-time audio and other tasks
  • Resplendence Software Projects
  • www.resplendence.com
LatencyMon: suitability checker for real-time audio and other tasks
 
fxsaber:

ZZY How to check a VPS from MQ is not at all clear.

Elementary.

1. lease a VPS from MQ

2. Migrate Expert Advisors on 32 charts.

3. Before 24 hours have passed, cancel the lease, having previously downloaded logs of the terminal and experts from the VPS.

Виртуальный хостинг для MetaTrader 5
Виртуальный хостинг для MetaTrader 5
  • www.mql5.com
Виртуальный хостинг для MetaTrader 4/5 является лучшим VPS-решением для Форекса. Оно не требует настройки, дает минимальные задержки до сервера и отличается низкими ценами. Всего за 15 USD в месяц вы получите виртуальную платформу, которая работает круглые сутки, экономит вашу прибыль и даже окупает себя. Создать удаленную копию приложения...
 
Slava:

Elementary.

1. rent a VPS from MQ

2. Migrate experts on 32 charts

3. Until 24 hours pass, you cancel your lease, having previously downloaded logs of the terminal and EAs from the VPS.

May this procedure be repeated?

By check I meant LatencyMon.

 
fxsaber:

Can this procedure be repeated?

By checking I meant LatencyMon.

On a VPS from MQ, you can only measure it yourself.

You can only migrate Expert Advisors. More indicators, but only on charts, to which the Expert Advisor is attached

Виртуальный хостинг для MetaTrader 5
Виртуальный хостинг для MetaTrader 5
  • www.mql5.com
Виртуальный хостинг для MetaTrader 4/5 является лучшим VPS-решением для Форекса. Оно не требует настройки, дает минимальные задержки до сервера и отличается низкими ценами. Всего за 15 USD в месяц вы получите виртуальную платформу, которая работает круглые сутки, экономит вашу прибыль и даже окупает себя. Создать удаленную копию приложения...
 
fxsaber:

A virtual machine with a ping of 0.6 ms (< 1 ms). Order/position modifications take from several tens to thousands of milliseconds. Server logs show values < 1 ms.

LatencyMon showed such horror.

Check your remote machines. A zero ping is nothing. It may turn out to be more profitable to trade from your home machine.

Too bad I can't check my VPS, the free version via RDP doesn't work.

 

How to remove double memory consumption by the Terminal?

#define  PRINT(A) Print(#A + " = " + (string)(A) + " MB.");

void OnStart()
{
  int MemoryTerminal = TerminalInfoInteger(TERMINAL_MEMORY_USED);
  int MemoryMQL = MQLInfoInteger(MQL_MEMORY_USED);
  
  MqlTick Ticks[];
  
  const int MemoryTicks = (CopyTicksRange(_Symbol, Ticks, COPY_TICKS_ALL, D'2020.08.01' * 1000) * sizeof(MqlTick)) >> 20;

  MemoryTerminal = TerminalInfoInteger(TERMINAL_MEMORY_USED) - MemoryTerminal;
  MemoryMQL = MQLInfoInteger(MQL_MEMORY_USED) - MemoryMQL;
  
  PRINT(MemoryTicks)
  PRINT(MemoryTerminal)
  PRINT(MemoryMQL)
}


Result.

        MemoryTicks = 1226 MB.
        MemoryTerminal = 2616 MB.
        MemoryMQL = 1244 MB.
 
fxsaber:

A virtual machine with a ping of 0.6 ms (< 1 ms). Order/position modifications take from several tens to thousands of milliseconds. Server logs show values < 1 ms.

LatencyMon showed such horror.

Check your remote machines. A zero ping is nothing. It may turn out to be more profitable to trade from your home machine.


ZS How to check VPS from MQ is not at all clear.

Which we have explained many times.

Why there is no such horror on our VPS, also repeatedly suggested to read and accept in a detailed article: why our VPS is better.

Лучшее VPS-решение для торговли на Форекс – VPS для MetaTrader 4/5
Лучшее VPS-решение для торговли на Форекс – VPS для MetaTrader 4/5
  • www.mql5.com
Универсальными средствами очень сложно добиться рекордных показателей. Обычным VPS-решением очень сложно получить по-настоящему быстрое исполнение. И мы покажем вам почему. Инфраструктура обычных VPS-решений Хостинг-провайдеры берут достаточно мощный сервер и запускают на нем много виртуальных операционных систем. Скажем, имеется машина с...
 
fxsaber:

How to remove double memory consumption by the Terminal?


Result.

You have a misunderstanding of simple things.

 
Renat Fatkhullin:

You have a misunderstanding of simple things.

Correctly understand that the memory of the terminal is added to the memory of the terminal programs mcl, tix and others.

 
Renat Fatkhullin:

You have a misunderstanding of simple things.

Likewise. Take your VPS. Market screeners can't work on it.

ZS It would be good to get rid of the hiccups that have been happening for months. Run this script on a machine with infinite RAM. For example, I can't upload ticks from June 1st just one character at a time. It just hangs CopyTicks with zero resource consumption.