[Quantproject-developers] QuantProject/b7_Scripts/TickerSelectionTesting EndOfDayTimerHandlerCTC.cs,
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2005-10-21 18:18:19
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22049/b7_Scripts/TickerSelectionTesting Modified Files: EndOfDayTimerHandlerCTC.cs EndOfDayTimerHandlerCTCWeekly.cs EndOfDayTimerHandlerCTO.cs Log Message: Updated some script files inside the TickerSelectionTesting namespace Index: EndOfDayTimerHandlerCTO.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting/EndOfDayTimerHandlerCTO.cs,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** EndOfDayTimerHandlerCTO.cs 18 Sep 2005 21:13:36 -0000 1.18 --- EndOfDayTimerHandlerCTO.cs 21 Oct 2005 18:18:08 -0000 1.19 *************** *** 162,166 **** this.addGenomeToBestGenomes(GO.BestGenome,currentDate.AddDays(-this.numDaysForOptimizationPeriod), currentDate); ! this.chosenTickers = (string[])GO.BestGenome.Meaning; } //else it will be buyed again the previous optimized portfolio --- 162,166 ---- this.addGenomeToBestGenomes(GO.BestGenome,currentDate.AddDays(-this.numDaysForOptimizationPeriod), currentDate); ! this.chosenTickers = ((MeaningForGenome)GO.BestGenome.Meaning).Tickers; } //else it will be buyed again the previous optimized portfolio Index: EndOfDayTimerHandlerCTCWeekly.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting/EndOfDayTimerHandlerCTCWeekly.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** EndOfDayTimerHandlerCTCWeekly.cs 18 Sep 2005 21:13:36 -0000 1.2 --- EndOfDayTimerHandlerCTCWeekly.cs 21 Oct 2005 18:18:08 -0000 1.3 *************** *** 152,156 **** //GO.KeepOnRunningUntilConvergenceIsReached = true; GO.Run(false); ! this.chosenTickers = (string[])GO.BestGenome.Meaning; } //else it will be buyed again the previous optimized portfolio --- 152,156 ---- //GO.KeepOnRunningUntilConvergenceIsReached = true; GO.Run(false); ! this.chosenTickers = ((MeaningForGenome)GO.BestGenome.Meaning).Tickers; } //else it will be buyed again the previous optimized portfolio Index: EndOfDayTimerHandlerCTC.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting/EndOfDayTimerHandlerCTC.cs,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** EndOfDayTimerHandlerCTC.cs 18 Sep 2005 21:13:36 -0000 1.14 --- EndOfDayTimerHandlerCTC.cs 21 Oct 2005 18:18:08 -0000 1.15 *************** *** 177,181 **** this.addGenomeToBestGenomes(GO.BestGenome,currentDate.AddDays(-this.numDaysForOptimizationPeriod), currentDate); ! this.chosenTickers = (string[])GO.BestGenome.Meaning; } //else it will be buyed again the previous optimized portfolio --- 177,181 ---- this.addGenomeToBestGenomes(GO.BestGenome,currentDate.AddDays(-this.numDaysForOptimizationPeriod), currentDate); ! this.chosenTickers = ((MeaningForGenome)GO.BestGenome.Meaning).Tickers; } //else it will be buyed again the previous optimized portfolio |