Forum

Is there a more detailed video on using MetaTrader VPS?

For example, 1. My strategy is based on GUI deployment, not just EA parameters. I need to click on the GUI on the chart and select various controls . Does this MetaTraderVPS support it? 2. My strategy sometimes uses DLL, but sometimes it's not necessary. It seems that VPS does not support DLL. 3. My

How long can MT5 be used if it is not upgraded?

How long can MT5 be used if it is not upgraded? I now hang the EA strategy. I remember that MT4 can not be used without upgrading in half a year, so how long does MT5 not upgrade will affect EA

Does MT5 have function to auto add EA to some chart?

For example , I want to add one EA to 10 chart. but every EA update i must re-add. This is a little troublesome. Does MT5 write a script and automatically add EA to the chart? Please note that is add EA, not adding indicators

Is there a good way to compile all the *.mq5 files to *.ex5 just with one click?

when we finish edit program , we should compile mq5 files to ex5. But if there are many mq5 files , Is there a way to compile all mq5 files to be ex5 without one by one

According indicator handle, how to get symbol and timeframe of this indicator handle?

we know : handle = iCustom("....", smybol, timeframe, ...); But how the other way around. According indicator handle, how to get symbol and timeframe of this indicator handle

How to use alone Standard LibraryPanels and DialogsCButton Internal event handlers?

Look at the picture. I want to use them alone. Is there a single example ? I do not want use them like: EVENT_MAP_BEGIN(CControlsDialog) ON_EVENT(ON_CLICK, m_button1, OnClickButton1) ON_EVENT(ON_CLICK, m_button2, OnClickButton2) ON_EVENT(ON_CLICK, m_button3, OnClickButton3) EVENT_MAP_END(CAppDialog)

what is the different between X64 Regular, AVX, AVX2+FMA3, AVX512+FMA3 ? Which is best for compile ?

what is the different between X64 Regular, AVX, AVX2+FMA3, AVX512+FMA3 ? Which is best for compile

How to judge variable types ?

template < typename T> void Test(T input ) { if (T is double ) ... if (T is int ) ... } I hope to perform different treatment by judging variable types in a function. Does MQL5 can do it

How do I encrypt the core code of MQL5 to prevent team members from stealing the core code when I form a team ?

I know it is possible to generate Libraries from the code and then load it as ex5, similar to a dll. For example: #import ".... .ex5" ... #import However, this way you can only introduce functions, but not classes. It is not very convenient, is there another way please