[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting AccountRe
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2005-05-26 23:32:33
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26527/b4_Business/a1_Financial/a2_Accounting/h5_Reporting Modified Files: AccountReport.cs Log Message: The benchmark equity line time interval, is better computed, now Index: AccountReport.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/AccountReport.cs,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** AccountReport.cs 17 Apr 2005 02:13:52 -0000 1.13 --- AccountReport.cs 26 May 2005 23:32:23 -0000 1.14 *************** *** 248,252 **** { History benchmarkQuotes = HistoricalDataProvider.GetAdjustedCloseHistory( ! this.benchmark ); this.benchmarkEquityLine = benchmarkQuotes.Select( this.EquityHistory ); this.benchmarkEquityLine.Interpolate( this.EquityHistory.Keys , new PreviousInterpolator() ); --- 248,253 ---- { History benchmarkQuotes = HistoricalDataProvider.GetAdjustedCloseHistory( ! this.benchmark , (DateTime)this.EquityHistory.GetKey( 0 ) , ! (DateTime)this.EquityHistory.GetKey( this.EquityHistory.Count - 1 ) ); this.benchmarkEquityLine = benchmarkQuotes.Select( this.EquityHistory ); this.benchmarkEquityLine.Interpolate( this.EquityHistory.Keys , new PreviousInterpolator() ); |