Features of the mql5 language, subtleties and tricks - page 129

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
ME has an ALT+V combination where you can see the previous values of the system clipboard. Even if you copied something from the browser and ME was working in the background, ME will see it and remember it.
Roughly speaking, ME sees a lot of what you do on the computer. For example, if you paste in an account password via the buffer, it goes into ME's history.
I copy a lot into this megabuffer, I have to restart ME to clear this buffer, but when ME starts up it still picks up the current data from the buffer, it's annoying, I suggested adding a clear buffer button at the bottom and numbering positions, when pasting it is easier to navigate by position numbers and not by content
Wow, I'm copying cryptocurrency passwords. How detrimental is that to me?
For example, if you give access to your computer from outside (TeamViewer, etc.), it is advisable to log out of all ME and clean the buffer (copy the rubbish there) before doing so.
ME has an ALT+V combination where you can see the previous values of the system clipboard. Even if you copied something from the browser and ME was working in the background, ME will see it and remember it.
Roughly speaking, ME sees a lot of what you do on the computer.
Thanks. Interesting. It's worth adding that it's not just what's been copied into ME that's saved, but everything in all applications. Specifically have to check to what depth is saved, just checked now, saw three copied texts, two from ME and one from the text in the post on this forum.
ps; Even two from the forum text
ME has an ALT+V combination where you can see the previous values of the system clipboard. Even if you copied something from the browser and ME was working in the background, ME will see it and remember it.
Roughly speaking, ME sees a lot of what you do on the computer. For example, if you paste in a password for an account or personal account from another resource via the buffer it will go into the history of the current ME session.
This is an interesting feature. Good thing the buffer is stored in memory and not in a file.
Here's another subtlety.
The compiler doesn't complain about functions of the same name with different input parameters, even if they don't belong to a class.
Execution result
The multi-buffer is great for speeding up the editor and is safe.
It does not write anything to disk and only keeps data in memory.
Here's another subtlety.
The compiler doesn't complain about functions of the same name with different input parameters, even if they don't belong to a class.
Runtime result
This is a normal function overloading. Everything is standard.
It's a normal function overload. Everything is standard.
For some reason, I thought overloading only worked in classes. I'd like to think I'm not the only one. Maybe this will help someone. ))))
Of course, a better solution would be if the developers gaveOptimizationCacheOff().
Note that the bool input parameter is actually a long. So bool inCache = 1 and bool inCache = 2 are different input parameters, although they are true in both cases.