PureBytes Links
Trading Reference Links
|
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...)
Peter
<<
Inputs: L1(9), L2(21), RLen(4), ATRLen(2), Upper(90), Lower(10);
Vars: SMA(0), LMA(0), PerR(0);
print(File("F:\tmp\Sys10.out"), "********* Entered RJ.SYS10 Trading System.
Today's date is: ", Date:8:0); >>
|