[Quantproject-developers] QuantProject/b7_Scripts/WalkForwardTesting/FixedLengthTwoPhases FixedLen
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2008-03-12 22:09:10
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/FixedLengthTwoPhases In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9863/WalkForwardTesting/FixedLengthTwoPhases Modified Files: FixedLengthTwoPhasesMain.cs FixedLengthTwoPhasesStrategy.cs Log Message: Changed IEndOfDayStrategy interface Index: FixedLengthTwoPhasesStrategy.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/FixedLengthTwoPhases/FixedLengthTwoPhasesStrategy.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FixedLengthTwoPhasesStrategy.cs 10 Feb 2008 14:21:57 -0000 1.4 --- FixedLengthTwoPhasesStrategy.cs 12 Mar 2008 22:09:05 -0000 1.5 *************** *** 65,68 **** --- 65,69 ---- public Account Account { + get { return this.account; } set { this.account = value; } } Index: FixedLengthTwoPhasesMain.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/FixedLengthTwoPhases/FixedLengthTwoPhasesMain.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** FixedLengthTwoPhasesMain.cs 10 Feb 2008 14:20:32 -0000 1.5 --- FixedLengthTwoPhasesMain.cs 12 Mar 2008 22:09:05 -0000 1.6 *************** *** 26,29 **** --- 26,30 ---- using QuantProject.Business.DataProviders; using QuantProject.Business.Strategies; + using QuantProject.Business.Financial.Accounting.AccountProviding; using QuantProject.Business.Strategies.Eligibles; using QuantProject.Business.Strategies.EquityEvaluation; *************** *** 170,174 **** new EndOfDayStrategyBackTester( backTestId , fixedLengthTwoPhasesStrategy , ! historicalQuoteProvider , firstDateTime , lastDateTime , benchmark , cashToStart , maxRunningHours ); --- 171,176 ---- new EndOfDayStrategyBackTester( backTestId , fixedLengthTwoPhasesStrategy , ! historicalQuoteProvider , ! new SimpleAccountProvider(), firstDateTime , lastDateTime , benchmark , cashToStart , maxRunningHours ); |