About the evaluation version
Description TOP
NewMQL converter (evaluation version) has almost the same function as the Pro version (certified)
What is the Pro version like? , So you can test your licenses before purchasing
However, only the bundled test EA (mq4) can be “converted” as a “restriction”.

* Screen color is slightly different
The bundled test EA (mq4) can be found in the “Pro Evaluation \ Evaluation EA (mq4)” folder.
Compile with the current version of MetaEditor before trying it out

どのぐらい、又どのようなの「不都合(warningなど)」があるのかを先にお確かめ下さい

* Once the EA (mq4) for the evaluation version TEST has been converted, the internals are converted, so the conversion may not be accepted again.
It's pretty good, but there are rare cases where it's a big complex EA that doesn't work well
For example
An EA that did not convert partly by one point is included for the evaluation version TEST "Signals_is_Dead.mq4"
`` ';'-'Continue' must be used within some loop only Signals_is_Dead.mq4 208 70 ''
The same error has been issued. This is the error that "Continue is only in the loop!"

this part
Change before |
if (!OrderSelect(l_ticket_88, SELECT_BY_TICKET)) continue; |
After change 1 |
if (OrderSelect(l_ticket_88, SELECT_BY_TICKET)) |
After change 2 |
chk = OrderSelect(l_ticket_88, SELECT_BY_TICKET); |
* There are better conversions, but for the time being, avoiding errors.
If you choose either 1, 2

There are no errors
By the way, the original code of this EA is full of errors! ! was・・・・・

In addition, if an EA (mq4) that is not for evaluation is input in the evaluation version, it will not be accepted.

Description TOP
To top
|