[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2009-08-30 15:56:07
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv23219/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables Modified Files: Summary.cs Log Message: AverageShortTradePercentageReturn summary row has been added to Summary Index: Summary.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables/Summary.cs,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** Summary.cs 21 Mar 2009 09:55:33 -0000 1.24 --- Summary.cs 30 Aug 2009 15:55:55 -0000 1.25 *************** *** 37,40 **** --- 37,41 ---- private NumberWinningLongTrades numberWinningLongTrades; private AverageLongTradePercentageReturn averageLongTradePercentageReturn; + private AverageShortTradePercentageReturn averageShortTradePercentageReturn; private NumberWinningShortTrades numberWinningShortTrades; private TotalNumberOfLongTrades totalNumberOfLongTrades; *************** *** 161,164 **** --- 162,169 ---- get { return this.averageLongTradePercentageReturn; } } + public AverageShortTradePercentageReturn AverageShortTradePercentageReturn + { + get { return this.averageShortTradePercentageReturn; } + } public TotalNumberOfShortTrades TotalNumberOfShortTrades { *************** *** 290,293 **** --- 295,299 ---- this.numberWinningLongTrades = new NumberWinningLongTrades( this ); this.averageLongTradePercentageReturn = new AverageLongTradePercentageReturn( this ); + this.averageShortTradePercentageReturn = new AverageShortTradePercentageReturn( this ); this.totalNumberOfShortTrades = new TotalNumberOfShortTrades( this ); this.numberWinningShortTrades = new NumberWinningShortTrades( this ); |