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
Forum on trading, automated trading systems and testing trading strategies
New MetaTrader 4 Platform build 1220
MetaQuotes Software Corp., 2019.09.13 17:28
The MetaTrader 4 platform update will be released on Friday, September 13, 2019. The new build features the following changes:
MetaTrader 4 Client Terminal build 1220
The update will be available through the LiveUpdate system.
You have to revoke permissions on the directory where the live update files are placed to prevent it from taking place. This requires good "power user" knowledge of the operating system to do this. I do not recommend this for average users.
PS! Read also the following thread that might help you out: https://www.mql5.com/en/forum/285411
You have to revoke permissions on the directory where the live update files are placed to prevent it from taking place. This requires good "power user" knowledge of the operating system to do this. I do not recommend this for average users.
PS! Read also the following thread that might help you out: https://www.mql5.com/en/forum/285411
I prefer to delete WebInstall folder and replace it with an empty file named WebInstall
It prevents downloading update.
But I had an issue, I had to pay extra bandwidth usage because MT is trying forever to download the update and loop.
Also it seems the "Live Update" entry is not always shown in MT4 journal window but only in the log file.
You have to revoke permissions on the directory where the live update files are placed to prevent it from taking place. This requires good "power user" knowledge of the operating system to do this. I do not recommend this for average users.
PS! Read also the following thread that might help you out: https://www.mql5.com/en/forum/285411
For your information.
Forum on trading, automated trading systems and testing trading strategies
Terminal Auto Update Lock (MT4)
Renat Fatkhullin , 2015.06.02 12:28
Do not try to block updates, please.
Get wild constant repetitive traffic with pumped updates, and then the eternal ban on IP in our services. This applies to all services that consider themselves smarter than the rest and do not understand what they are doing.
Released release - upgrade and continue working. Please note that blocking updates, as well as the operation of the terminal, is a direct violation of the license to use the terminal.
there are already problems with this update, it freezes continuously on windows 10, already at closed markets.
Possible serious Compiler Error in 1210:
The compiler shows a parameter conversion not allowed error which is wrong and was working before:
#import "drb.dll"
int order(int &arr[],int,int,int,int);
int profit(int &arr[],int,int,int,bool,int,int);
#define y 365
#define triple 3
#define four 4
#define sizeStream 55296000
uint memoStream[sizeStream][four];
datetime starts[y,triple];
void OnStart()
{
int i, k; double p; uint spread = 10, sl, tp, trigger;
k = order(memoStream,starts[i,0],starts[i,1],spread,trigger);
if ( k > 0 ) p += profit ( memoStream,starts[i,0] + k,starts[i,2],spread,0,sl,tp );
else p += profit ( memoStream,starts[i,0] - k,starts[i,2],spread,1,sl,tp );
}
'compiler error in 1210 .mq4' compiler error in 1210 .mq4 1 1
'memoStream' - parameter conversion not allowed compiler error in 1210 .mq4 14 20
'memoStream' - parameter conversion not allowed compiler error in 1210 .mq4 15 40
'memoStream' - parameter conversion not allowed compiler error in 1210 .mq4 16 32
In the newer compiler version this issue could be fixed by using
int order(int &arr[][],int,int,int,int);
int profit(int &arr[][[],int,int,int,bool,int,int);
instead of &arr[] only as was working before.
Where is the end of your #import?
Importing Functions (#import) - Preprocessor - Language Basics - MQL4 Reference