I am trying to get MT4 to talk to Ubuntu; code:
volumeCount=FileOpen(/home/david/.wine/drive_c/Program\ Files\ \
(x86\)/Capital\ City\ Markets\ MetaTrader\
4/MQL4/Files/+"Volpath.bin",FILE_READ|FILE_WRITE|FILE_BIN);}
This produces an error 'Illegal escape sequence'.
1. I am using wine to run this and I made sure all the permissions were good to go, but I still can't seem to get it to write.
volumeCount=FileOpen("/home/david/.wine/drive_c/Program\ Files\ \
(x86\)/Capital\ City\ Markets\ MetaTrader\
4/MQL4/Files/Volpath.bin",FILE_READ|FILE_WRITE|FILE_BIN);}
This produces error 5007. I can't use the regular FileOpen sequence or it produces the same thing.
Bottom Line I need FileOpen() to work in an ubuntu/wine environment.