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: 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?
-
check ageposted in Questions & Answers
I'm trying to find the answer from this forum but couldn't.
I'm curious is "check age" block also include weekend (when market closed) as part of calculation?I worry it calculates and include weekend which doesnt make sense for me because if i have logic "close trades if floating more than 24 hours" and trade was opened on friday night. it means it will close trades on monday morning at beginning of market.
any clue on how "check age" works?
thanks
-
RE: EA constant input is not sorted exactly like in the builderposted in Bug Reports
Oh, suddenly it works after I change the constant name. I added new prefix just to test.
-
EA constant input is not sorted exactly like in the builderposted in Bug Reports
Hi,
I just have this problem recently (in the last 2-3 days), it was ok before.
i create constant input (for EA setting), and generated into .ex4 file and .mq4 filebut when i check in backtest mt4, the setting sorting is different.
ex: from the fxdreema builder EA setting is: A, B,C but from MT4 backtest the setting is different sorted.thanks
-
RE: variables string somehow converted into number 1525542307278posted in Bug Reports
awesome. I think it's fixed now. thanks!
-
RE: variables string somehow converted into number 1525542307278posted in Bug Reports
haha... I knew it. you must be working hard doing something good for your customer..

your software is the best on earth. keep the good work, buddy!thanks so much for your support & quick response.
-
variables string somehow converted into number 1525542307278posted in Bug Reports
I was working in my new EA. added some changes and try to export to mq4. suddenly my EA doesn't work and when I checked from Meta Editor, I found that all string variables value setup will be converted into a weird value which is 1525542307278
I believe the author of fxdreema doing something (in testing or research purposes?) but forgot to set back everything into working condition.
pls advice, admin..

-
RE: I lost all of projects in fxdreema builderposted in Bug Reports
wow, thanks! now all my projects are back!
awesome!