what is the relevance with my question? 
skytrader
@skytrader
I'm sexy & I know it
Best posts made by skytrader
Latest posts made by skytrader
-
RE: Builder is very slow today :(posted in Bug Reports
ok finally i found a workaround now to temporarily fix this slowness issue:
- install cloudflare warp https://one.one.one.one/ and activate it.
- restart chrome
i compare the speed with and without cloudflare 1.1.1.1 wrap, its significantly improved the speed when cloudflare 1.1.1.1 wrap is activated.
i also contacted the support, it seems the problem is only specific for some Asian countries, not sure if this is the issue coming from fxdreema server provider or from their domain DNS.hope that helps.
-
RE: Builder is very slow today :(posted in Bug Reports
how to reach out support? the problem is still persist until now..
i'm preparing to find another EA generator tools now to anticipate if fxdreema will be no longer well managed in the future.the features is great but the platform speed is extremely decreased to almost zero now.
-
RE: Builder is very slow today :(posted in Bug Reports
this problem started killing me softly now.. so frustrated!
-
RE: Builder is very slow today :(posted in Bug Reports
ok now its back to extremely slow when exporting. even if i double click the "Condition" node to show the popup, it takes more than 10 seconds.
-
RE: Builder is very slow today :(posted in Bug Reports
@xiawu yes that's what i did. keep refreshing and retry.
-
RE: Builder is very slow today :(posted in Bug Reports
it seems back to normal now as per this monday morning GMT+7
-
Builder is very slow today :(posted in Bug Reports
Platform is very slow today. Everytime i click generate mql4 file it will take more than 30s, sometimes 1 min and get timeout.
Not sure if it because my flow is big enough for platform to handle. last year i have bigger EA than my current one but it works perfectly to download and it was never timeout.
Is there any maintenance right now? my internet speed is quite good (> 100 mbps).
-
RE: Backtest newsfilter MT4 (Tutorial) (CSV)posted in Tutorials by Users
thank you for sharing the script. pls note that your script will be failed for broker with several symbol like Gold, Silver. can modify your base_currency & quote_currency like this (in block "read news"):
filehandle = FileOpen(filename,FILE_READ|FILE_CSV,',');
base_currency = StringSubstr(Symbol(),0,3);
quote_currency = StringSubstr(Symbol(),3,3);
if(StringSubstr(Symbol(),0,4) == "GOLD"){
base_currency = "XAU";
quote_currency = "USD";
}
if(StringSubstr(Symbol(),0,6) == "SILVER"){
base_currency = "XAG";
quote_currency = "USD";
}
//base_currency = Symbol();
Print("base_currency: ", base_currency, ", quote_currency: ", quote_currency, ", Symbol: ", Symbol() ); -
RE: check ageposted in Questions & Answers
@fxdreema can you make it as option to include/exclude weekend in "check age" block?