Have you tried adding a newline to the end of each writestring? eg:
LogFile.WriteString(StringConcatenate("1",",","2",",","3\n"));
Stuart Browne:
Have you tried adding a newline to the end of each writestring? eg:
Sort of. I've fixed it. Here's the code:
#include <Files/FileTxt.mqh> CFileTxt LogFile; void OnStart() { LogFile.Open(StringConcatenate("MyFile",".csv"),FILE_READ|FILE_WRITE); LogFile.WriteString(StringConcatenate("1",",","2",",","3","\r\n")); LogFile.WriteString(StringConcatenate("1",",","2",",","3","\r\n")); LogFile.WriteString(StringConcatenate("1",",","2",",","3","\r\n")); LogFile.Close(); Print("Done!"); }

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
Trying to create a csv file. Now, I know this isn't useful; but in order to figure out a problem; you need to break it down into it's smaller components. This is the component I'm trying to get work.
The output should be:
The output I get is:
Here is the code. Any ideas?
Thanks in advance!