I have the same problem. The server is very slow. More than 80% of downloads fail. CPU and RAM should be upgraded for better computation.
Latest posts made by rungsan
-
RE: I Can't download EA file and I cant writting EA for 3 Days. (My internet so fast)posted in Bug Reports
-
Feature Requests - Can you increase number of columns of block "Write to file"posted in General Discussions
The "write to file" block is very useful. I can use it for statistics and analysis EA in Excel, but it only has 10 columns. It would be great if you could increase the number of columns more, at least 20.
-
Integrate with Line Notificationposted in Questions & Answers
How to convert the following script to Custom MQL Code on fxDreema?
##################################################
//+------------------------------------------------------------------+
//| SendLineAlert.mq4 |
//| Copyright 2018, MetaQuotes Software Corp. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2018, MetaQuotes Software Corp."
#property link "https://www.mql5.com"
#property version "1.00"
#property strict
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
input string Token ="";
input string Massage ="Hello";int OnInit()
{
//---
string headers;
char data[], result[];headers="Authorization: Bearer "+Token+"\r\n application/x-www-form-urlencoded\r\n";
ArrayResize(data,StringToCharArray("message="+Massage,data,0,WHOLE_ARRAY,CP_UTF8)-1);
int res = WebRequest("POST", "https://notify-api.line.me/api/notify", headers, 0, data, data, headers);
if(res==-1)
{
Print("Error in WebRequest. Error code =",GetLastError());
MessageBox("Add the address 'https://notify-api.line.me' in the list of allowed URLs on tab 'Expert Advisors'","Error",MB_ICONINFORMATION);
}//---
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Expert deinitialization function |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
//---}
//+------------------------------------------------------------------+
//| Expert tick function |
//+------------------------------------------------------------------+
void OnTick()
{
//---}
//+------------------------------------------------------------------+ -
RE: Check "Latest close position" before tradeposted in Questions & Answers
Thank you, but it just a close type.
For close price I got it in Modify Variables>(on Trade) Event Data. -
RE: Check "Latest close position" before tradeposted in Questions & Answers
Nothing for "Latest close position" in check trading conditions blocks.
How can I get this value? -
Check "Latest close position" before tradeposted in Questions & Answers
Hi,
I want to check "Latest close position" of order before trade
Is there solution for this case?If "Latest close position" < "current position" 20 pips, not allow to trade.