[Quantproject-developers] QuantProject/b7_Scripts/SimpleTesting/OneRank RunOneRank.cs,1.3,1.4
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2004-11-29 16:23:36
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/SimpleTesting/OneRank In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22791/b7_Scripts/SimpleTesting/OneRank Modified Files: RunOneRank.cs Log Message: ExtededDateTime has been replaced by EndOfDayDateTime Index: RunOneRank.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/SimpleTesting/OneRank/RunOneRank.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** RunOneRank.cs 15 Aug 2004 00:07:48 -0000 1.3 --- RunOneRank.cs 29 Nov 2004 16:23:22 -0000 1.4 *************** *** 31,34 **** --- 31,35 ---- using QuantProject.Business.Strategies; using QuantProject.Business.Scripting; + using QuantProject.Business.Timing; using QuantProject.Presentation.Reporting.MicrosoftExcel; using QuantProject.Presentation.Reporting.WindowsForm; *************** *** 84,88 **** ((History)tester.Account.GetProfitNetLossHistory( ! new ExtendedDateTime( endDateTime , BarComponent.Close ) ) ).ReportToConsole(); // uncomment the four lines below to use the Excel reporting feature --- 85,89 ---- ((History)tester.Account.GetProfitNetLossHistory( ! new EndOfDayDateTime( endDateTime , EndOfDaySpecificTime.MarketClose ) ) ).ReportToConsole(); // uncomment the four lines below to use the Excel reporting feature |