[Quantproject-developers] QuantProject/b4_Business/a2_Strategies IEndOfDayStrategy.cs, 1.2, 1.3
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2008-03-12 22:00:46
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a2_Strategies In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv4561/a2_Strategies Modified Files: IEndOfDayStrategy.cs Log Message: Added Account property (get;set;) to the interface, in order to set the account of the object implementing an IEndOfDayStrategy to the account created by the EndOfDayStrategyBacktester (directly in the constructor of the Backtester) Glauco, please check your main files (the "external" account assignement) Index: IEndOfDayStrategy.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a2_Strategies/IEndOfDayStrategy.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IEndOfDayStrategy.cs 19 Jan 2008 19:07:05 -0000 1.2 --- IEndOfDayStrategy.cs 12 Mar 2008 22:00:34 -0000 1.3 *************** *** 23,26 **** --- 23,27 ---- using System; + using QuantProject.Business.Financial.Accounting; using QuantProject.Business.Financial.Accounting.Transactions; using QuantProject.Business.Strategies.Logging; *************** *** 46,49 **** --- 47,51 ---- void OneHourAfterMarketCloseEventHandler( Object sender , EndOfDayTimingEventArgs endOfDayTimingEventArgs ); + Account Account{get;set;} } } |