[Quantproject-developers] QuantProject/b7_Scripts/SimpleTesting/OneRank RunOneRankWithExcelReport.cs
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2004-11-29 16:25:28
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/SimpleTesting/OneRank In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23419/b7_Scripts/SimpleTesting/OneRank Modified Files: RunOneRankWithExcelReport.cs RunOneRankWithWindowsReport.cs Log Message: ExtededDateTime has been replaced by EndOfDayDateTime Index: RunOneRankWithWindowsReport.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/SimpleTesting/OneRank/RunOneRankWithWindowsReport.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RunOneRankWithWindowsReport.cs 15 Aug 2004 00:07:49 -0000 1.2 --- RunOneRankWithWindowsReport.cs 29 Nov 2004 16:25:17 -0000 1.3 *************** *** 29,32 **** --- 29,33 ---- using QuantProject.Business.Financial.Instruments; using QuantProject.Business.Testing; + using QuantProject.Business.Timing; using QuantProject.Business.Strategies; using QuantProject.Business.Scripting; *************** *** 48,52 **** Report report = new Report( this.account ); report.Show( this.ticker , 7 , ! new ExtendedDateTime( this.endDateTime , BarComponent.Close ) , this.ticker ); } } --- 49,54 ---- Report report = new Report( this.account ); report.Show( this.ticker , 7 , ! new EndOfDayDateTime( this.endDateTime , ! EndOfDaySpecificTime.OneHourAfterMarketClose ) , this.ticker ); } } Index: RunOneRankWithExcelReport.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/SimpleTesting/OneRank/RunOneRankWithExcelReport.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RunOneRankWithExcelReport.cs 15 Aug 2004 00:07:49 -0000 1.2 --- RunOneRankWithExcelReport.cs 29 Nov 2004 16:25:17 -0000 1.3 *************** *** 29,32 **** --- 29,33 ---- using QuantProject.Business.Financial.Instruments; using QuantProject.Business.Testing; + using QuantProject.Business.Timing; using QuantProject.Business.Strategies; using QuantProject.Business.Scripting; *************** *** 47,51 **** base.Run(); AccountReport accountReport = this.account.CreateReport( this.ticker , 7 , ! new ExtendedDateTime( endDateTime , BarComponent.Close ) , ticker ); ExcelManager.Add( accountReport ); ExcelManager.ShowReport(); --- 48,53 ---- base.Run(); AccountReport accountReport = this.account.CreateReport( this.ticker , 7 , ! new EndOfDayDateTime( endDateTime , EndOfDaySpecificTime.OneHourAfterMarketClose ) , ! ticker ); ExcelManager.Add( accountReport ); ExcelManager.ShowReport(); |