PureBytes Links
Trading Reference Links
|
Mistake below.. should be using fileappend rather than print for this...
Its a bit easier if you use a filename variable. You can then change the filename more easily.
(you can also have it as an input parameter - I do it this way when I have multiple copies running)
Also, if you put commas in the output string and call it a csv file, it is very simple to read with excel.
eg
var: myfile(c:\tmp.csv);
print (myfile, date,",",time",", etc etc...)
|