[Quantproject-developers] QuantProject/b7_Scripts/TickerSelectionTesting RunEfficientPortfolio.cs,1.
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2005-08-03 18:55:24
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12281/b7_Scripts/TickerSelectionTesting Modified Files: RunEfficientPortfolio.cs RunTestOptimizedCTCPortfolio.cs RunTestOptimizedCTOPortfolio.cs Log Message: Restored previous code: OptimizationOutput has been deleted from Account. SaveGenomes MenuItem has been deleted from Report. RunEfficientPortfolio now archives Genomes as previously. Index: RunTestOptimizedCTOPortfolio.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting/RunTestOptimizedCTOPortfolio.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** RunTestOptimizedCTOPortfolio.cs 1 Aug 2005 22:31:48 -0000 1.7 --- RunTestOptimizedCTOPortfolio.cs 3 Aug 2005 18:55:11 -0000 1.8 *************** *** 110,116 **** { this.endOfDayTimer.Stop(); - this.account.OptimizationOutput = (object) new OptimizationOutput(this.startDateTime.DateTime, - this.endDateTime.DateTime, - this.endOfDayTimerHandler.BestGenomes); } --- 110,113 ---- Index: RunEfficientPortfolio.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting/RunEfficientPortfolio.cs,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** RunEfficientPortfolio.cs 1 Aug 2005 22:31:48 -0000 1.12 --- RunEfficientPortfolio.cs 3 Aug 2005 18:55:11 -0000 1.13 *************** *** 244,254 **** // this.checkDateForReport_createDirIfNotPresent(dirNameWhereToSaveBestGenomes); ! this.account.OptimizationOutput = (object) new OptimizationOutput(this.startDateTime.DateTime, ! this.endDateTime.DateTime, ! this.endOfDayTimerHandler.BestGenomes); ! ObjectArchiver.Archive((OptimizationOutput)this.account.OptimizationOutput, dirNameWhereToSaveBestGenomes + fileName + ".bgn"); - //this.account.BestGenomes = this.endOfDayTimerHandler.BestGenomes; this.endOfDayTimer.Stop(); --- 244,252 ---- // this.checkDateForReport_createDirIfNotPresent(dirNameWhereToSaveBestGenomes); ! ObjectArchiver.Archive(new OptimizationOutput(this.startDateTime.DateTime, ! this.endDateTime.DateTime, ! this.endOfDayTimerHandler.BestGenomes), dirNameWhereToSaveBestGenomes + fileName + ".bgn"); this.endOfDayTimer.Stop(); Index: RunTestOptimizedCTCPortfolio.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting/RunTestOptimizedCTCPortfolio.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** RunTestOptimizedCTCPortfolio.cs 1 Aug 2005 22:31:48 -0000 1.5 --- RunTestOptimizedCTCPortfolio.cs 3 Aug 2005 18:55:11 -0000 1.6 *************** *** 119,125 **** { this.endOfDayTimer.Stop(); - this.account.OptimizationOutput = (object) new OptimizationOutput(this.startDateTime.DateTime, - this.endDateTime.DateTime, - this.endOfDayTimerHandler.BestGenomes); } --- 119,122 ---- |