[Quantproject-developers] QuantProject/b4_Business/a3_Testing BackTester.cs,1.1,1.2
Brought to you by:
glauco_1
|
From: <gla...@us...> - 2003-11-28 15:52:36
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a3_Testing
In directory sc8-pr-cvs1:/tmp/cvs-serv6110/b4_Business/a3_Testing
Modified Files:
BackTester.cs
Log Message:
-The BackTester class now is an abstract class
- A public Name property has been added to the BackTester class
Index: BackTester.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a3_Testing/BackTester.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** BackTester.cs 25 Nov 2003 16:18:25 -0000 1.1
--- BackTester.cs 28 Nov 2003 15:52:31 -0000 1.2
***************
*** 3,6 ****
--- 3,7 ----
using QuantProject.ADT;
using QuantProject.Business.Financial.Accounting;
+ using QuantProject.Business.Strategies;
namespace QuantProject.Business.Testing
***************
*** 9,15 ****
/// Summary description for BackTester.
/// </summary>
! public class BackTester : Optimizable
{
private Account account = new Account();
public Account Account
--- 10,17 ----
/// Summary description for BackTester.
/// </summary>
! public abstract class BackTester : Optimizable
{
private Account account = new Account();
+ public string Name;
public Account Account
***************
*** 18,22 ****
set { account = value; }
}
! public BackTester()
{
//
--- 20,26 ----
set { account = value; }
}
! public TradingSystems TradingSystems = new TradingSystems();
!
! public BackTester()
{
//
***************
*** 28,31 ****
--- 32,36 ----
return 0;
}
+ public abstract void Test();
}
}
|