PureBytes Links
Trading Reference Links
|
no but you could print to a file the same info you print to the print log
where print is followed by the file name
Input:a1(MarketPosition(0)),a2(Close),a3(OpenPositionProfit),a4(MaxIDDrawDow
n),a5(PercentProfit),a6(NetProfit);
Print(File("C:\US30data.txt"),"US 30 Yr.Bonds",","," ",Date:1:0,",","
",Time:1:0,",",a1,",",a2,",",a3,",",a4,",",a5,",",a6);
> Is there anyway to save the contents of the print log to an ascii file?
>
> Thanks!
> Matt
|