[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a3_Ordering HistoricalEndOfDayOrderE
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2004-12-13 01:44:56
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a3_Ordering In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8520/b4_Business/a1_Financial/a3_Ordering Modified Files: HistoricalEndOfDayOrderExecutor.cs Log Message: Bug fixed: now a new EndOfDayDateTime instance is created for each EndOfDayTransaction Index: HistoricalEndOfDayOrderExecutor.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a3_Ordering/HistoricalEndOfDayOrderExecutor.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** HistoricalEndOfDayOrderExecutor.cs 29 Nov 2004 14:51:52 -0000 1.1 --- HistoricalEndOfDayOrderExecutor.cs 13 Dec 2004 01:44:42 -0000 1.2 *************** *** 54,58 **** EndOfDayTransaction endOfDayTransaction = new EndOfDayTransaction( TimedTransaction.GetTransactionType( order.Type ) , order.Instrument , ! order.Quantity , instrumentPrice , this.timer.GetCurrentTime() ); OrderFilled( this , new OrderFilledEventArgs( order , endOfDayTransaction ) ); } --- 54,60 ---- EndOfDayTransaction endOfDayTransaction = new EndOfDayTransaction( TimedTransaction.GetTransactionType( order.Type ) , order.Instrument , ! order.Quantity , instrumentPrice , ! new EndOfDayDateTime( this.timer.GetCurrentTime().DateTime , ! this.timer.GetCurrentTime().EndOfDaySpecificTime ) ); OrderFilled( this , new OrderFilledEventArgs( order , endOfDayTransaction ) ); } |