- Search Crypto Craft
- 433 Results (2 Threads , 431 Replies )
- emmzett replied Mar 31, 2021
You find all currently supported and working versions and the web installer here: url
Is Metatrader 4 dead?
- emmzett replied Mar 28, 2021
I don't trade spreads. Calculating lot sizes for a single currency trade is simple if we assume that the currency index is equally weighted and if we don't care about re-balancing. A typical retail trade will last at most a few days and the ...
Index Charts
- emmzett replied Mar 24, 2021
From my experience with self-calculated index charts (> 8 years) I would say the only way to get reliable history (whatever timeframe) is to calculate and record history from live streaming quotes. MT5's "custom symbol" feature is not suitable to ...
Index Charts
- emmzett replied Mar 11, 2021
In every mature language statements are split into expressions and then most simple expressions are evaluated from right to left. How statements and expressions are split into sub-expressions depends on the operators between them and the precendence ...
MT4 Variable Question
- emmzett replied Mar 11, 2021
Yes, I didn't check that there's no way to enter *.* as a file mask. Rename the above .xml to .wpw ("partial" firewall rules policy). .wfw stands for a "full" policy and here we only want to import a single rule. ps: The last version of WFC before ...
Removing some functions from metatrader
- emmzett replied Mar 11, 2021
There is a much more easy solution. Install Windows Firewall Control from BiniSoft and import the attached rule (adjust it to your installation). As a result all MetaQuotes content in the footer tabs is gone. edit: Rename the file extension from ...
Removing some functions from metatrader
- emmzett replied Feb 7, 2021
Sorry, I can't help you. But thank you for putting a smile upon my face. And I mean it.
calling scripts from indicator
- emmzett replied Jan 29, 2021
Here is the last official version: url Use default settings on EURUSD,M1 with "EveryTick" mode.
All day scalper: add functions to avoid risks
- emmzett replied Jan 15, 2021
Nice. Can you post the .set files you use? Thank you. edit: v2.461 -> github.com/rosasurfer/mt4-mql/tree/b3be98e/mql4/experts/mdp
All day scalper: add functions to avoid risks
- emmzett replied Jan 1, 2021
It's not "cleverly coded" but a structural flaw of the system. The EA is originally based on the famous "MillionDollarPips EA". Credits for the initial transformation from MDP to XMT-Scalper go to a Swedish guy named Capella. Today various versions ...
All day scalper: add functions to avoid risks
- emmzett replied Jan 1, 2021
Hello. The bug occurred in two specific cases: When the symbol was changed in a chart where the indicator was loaded (by dragging another sybol from the MarketWatch window into the chart). This bug is fixed. When the trading account was changed ...
Bl**dy BonkersFX Core Volume: The truth revealed
- emmzett replied Aug 16, 2020
Go to "Main menu" -> "File" -> "Open Data Folder". Navigate to "templates". Open the template you just saved with a regular text editor, modify it and save your changes. The "window" tags to remove are at the bottom of the file, almost at the end. ...
2nd Axis or overlay in Chart Area
- emmzett replied Aug 8, 2020
I won't post the source in a public forum but you can decompile and study it by yourself using the public and free decompiler I hosted here: url ps: Decompiling and studying decompiled software is not illegal. Redistributing or selling decompiled ...
I am looking for a coder to make a simple EA
- emmzett replied Aug 8, 2020
Always run DebugView from Sysinternals (start it with admin rights) parallel to the terminal. If something goes wrong in the framework DebugView is the place to look for error messages.
How best to combine leading/lagging indicators in my EA?
- emmzett replied Aug 8, 2020
Bash is only needed when sending email via the function SendEmail(), otherwise you may just ignore it. SendEmail() uses the Cygwin package "email". That package requires working command output redirection which is broken in cmd.exe if the redirected ...
How best to combine leading/lagging indicators in my EA?
- emmzett replied Aug 5, 2020
Tagged a new release v0.105
How best to combine leading/lagging indicators in my EA?
- emmzett replied Aug 5, 2020
MQL4.0 will always be supported in all MT4 versions, so yes - it works in the latest build. [2] is a system error and means "Cannot load file/file not found" Most probably you experience a data folder issue. At startup the terminal logs the ...
How best to combine leading/lagging indicators in my EA?
- emmzett replied Aug 2, 2020
I added the function ReopenAlertDialog() to my MT4Expander library. It can reopen the Alert dialog box without a Print() statement, i.e. without adding another string to the existing alerts. There is also a sound parameter to confirm the re-opening ...
How can I display the Alert window manually?
- emmzett replied Jul 31, 2020
Once the Alert window was created (at least one Alert message was displayed) the window can be displayed again without manually triggering a new alert. I'm still looking for the menu id... int hWndAlert, hWndNext=GetTopWindow(NULL), ...
How can I display the Alert window manually?
- emmzett replied Jul 29, 2020
To be backward compatible with old terminal versions (I use them a lot) I compile with an old and pure MQL4 compiler (see the bin directory). In your case just download a release version of the framework and use the precompiled binaries. You also ...
How best to combine leading/lagging indicators in my EA?