MT4 EA CONVERSION TO MT5
-
Hi. I just converted an MQL4 file to MQL5 using FX DREEMA'S "converter' feature. I now want to convert the MQL5 file to .EX5. How can I do that?
-
@Nkulu
Better download to your MT5 and compile it there. -
@sktsec Thanks. I tried that, after compiling, it had about 100 errors.
-
@Nkulu This is because all 'for each trade' blocks on mql4 should be substituted by 'for each position' blocks on mql5 before doing the compilation. Same with all other blocks with the words 'trade' on mql4 and 'position' on mql5.
-
Thank you for your response.