
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
There is a typo. You use dot instead of comma
I tested this today and it looks like this is causing the issue, well spotted
favosys: can you please confirm ? if you confirm I'll contact thee Service Desk and update them.
I tested this today and it looks like this is causing the issue, well spotted
favosys: can you please confirm ? if you confirm I'll contact thee Service Desk and update them.
Yes, thank you sangmane. This seems to be working in my test EA, I will need to run some tests in my main EA but yeah, it seems that was all the problem.
Thanks again,
Yes, thank you sangmane. This seems to be working in my test EA, I will need to run some tests in my main EA but yeah, it seems that was all the problem.
Thanks again,
if((cont > 15) && (cont < 50)){
if(ticket != -1){
if(OrderSelect(ticket, SELECT_BY_TICKET) == true){
datetime horacierre = OrderCloseTime();
if(horacierre == 0){
Qnt_Symb=FileWrite(Handle,TimeToStr(TimeLocal(),TIME_DATE|TIME_SECONDS)," - ","Orden ", ticket, " en par ". Symbol(), " sigue abierta.");
}
else{
Qnt_Symb=FileWrite(Handle,TimeToStr(TimeLocal(),TIME_DATE|TIME_SECONDS)," - ","La orden ", ticket, " se cerro automaticamente a las ", TimeToStr(horacierre,TIME_DATE|TIME_SECONDS));
}
}
}
}
There is a typo. You use dot instead of comma
OK, I'll notify the Service Desk and ask them to investigate why the compiler didn't complain . . .
I had a reply from the Service Desk, they acknowledge that there is a bug . . . I doubt it will be fixed as the compiler, Meta Editor, is in the process of a major change which should address this issue anyway.
By the way, the new beta MetaEditor throws an error for the line of code with the . in it.