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
fileHandle = FileOpen("signal.txt", FILE_READ | FILE_WRITE | FILE_ANSI | FILE_SHARE_READ | FILE_SHARE_WRITE);
Do you mean if i just add this then python and mql5 can read and write the file at the same time ?
Thanks
Do you really want a file to be read/write from both side ? Seem to me a bad idea, even if the sharing attributes can be set to do it.
And these attributes are only for the MQL side, you would have to check the Python side.
Do you really want a file to be read/write from both side ? Seem to me a bad idea, even if the sharing attributes can be set to do it.
And these attributes are only for the MQL side, you would have to check the Python side.
thank you very much !