Write the code (or pay someone).
Hi
It’s not a difficult to code, you should simply go in a loop for all historical trades and save the data you want as a text (you can write here ticket, lots, prices etc – converted to string and if you want to use different columns in excel for that use specified delimiter like “,’ or “;” ) in the txt file like this:
void writeInFile(string txt) { int f = FileOpen(Filename+".csv",FILE_READ|FILE_SHARE_WRITE|FILE_WRITE|FILE_SHARE_READ); if(f>0) { FileSeek(f, 0, SEEK_END); FileWrite(f,txt); FileClose(f); } }
Have a nice day👍📊
Hi
It’s not a difficult to code, you should simply go in a loop for all historical trades and save the data you want as a text (you can write here ticket, lots, prices etc – converted to string and if you want to use different columns in excel for that use specified delimiter like “,’ or “;” ) in the txt file like this:
Have a nice day👍📊
Thanks.

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use