[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables Su
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2004-08-06 13:47:51
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31798/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables Modified Files: Summary.cs Log Message: The cast for the return value for the NumberWinningTrades property has been fixed Index: Summary.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/Tables/Summary.cs,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Summary.cs 1 Aug 2004 00:34:49 -0000 1.8 --- Summary.cs 6 Aug 2004 13:47:42 -0000 1.9 *************** *** 60,66 **** get { return (int)this.totalNumberOfTrades.rowValue; } } ! public double NumberWinningTrades { ! get { return (long)this.numberWinningTrades.rowValue; } } public double AverageTradePercentageReturn --- 60,66 ---- get { return (int)this.totalNumberOfTrades.rowValue; } } ! public int NumberWinningTrades { ! get { return (int)this.numberWinningTrades.rowValue; } } public double AverageTradePercentageReturn |