Benjamin David Hardman:
Hi all,
I'm writing a CSV filewrite feature in my EA to basically track my equity curve as well as other data.
This code works but everything is printed in one cell, rather than a different column for each parameter - any ideas?
Looking into it more it looks to be a problem with excel as if I open with numbers (mac) it works fine:
Benjamin David Hardman: rather than a different column for each parameter - any ideas?
int csv_handle = FileOpen(csv_name,FILE_READ|FILE_WRITE|FILE_CSV|FILE_ANSI);
Perhaps you should specify a separator (in the code and corresponding in Excel).
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
Hi all,
I'm writing a CSV filewrite feature in my EA to basically track my equity curve as well as other data.
This code works but everything is printed in one cell, rather than a different column for each parameter - any ideas?