[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-09-29 21:14:08
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv13426/a2_Accounting/h5_Reporting/Tables Modified Files: StatisticsSummary.cs Log Message: The new revision moves toward an intraday enabled framework. EndOfDayDate time has been removed, DateTime is used now. The code has been changed accordingly. Index: StatisticsSummary.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables/StatisticsSummary.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** StatisticsSummary.cs 18 Aug 2008 21:13:20 -0000 1.3 --- StatisticsSummary.cs 29 Sep 2008 21:13:47 -0000 1.4 *************** *** 19,23 **** { private AccountReport accountReport; ! private IHistoricalQuoteProvider historicalQuoteProvider; private AverageReturnOnMondayWithOpenPositions averageReturnOnMondayWithOpenPositions; --- 19,23 ---- { private AccountReport accountReport; ! private HistoricalMarketValueProvider historicalMarketValueProvider; private AverageReturnOnMondayWithOpenPositions averageReturnOnMondayWithOpenPositions; *************** *** 75,82 **** } public StatisticsSummary( AccountReport accountReport , ! IHistoricalQuoteProvider historicalDataProvider ) : base( accountReport.Name + " - StatisticsSummary" ) { ! this.historicalQuoteProvider = historicalDataProvider; this.statisticsSummary( accountReport ); } --- 75,82 ---- } public StatisticsSummary( AccountReport accountReport , ! HistoricalMarketValueProvider historicalMarketValueProvider ) : base( accountReport.Name + " - StatisticsSummary" ) { ! this.historicalMarketValueProvider = historicalMarketValueProvider; this.statisticsSummary( accountReport ); } |