[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRo
Brought to you by:
glauco_1
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22232/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows Modified Files: AnnualSystemPercentageReturn.cs AverageLongTradePercentageReturn.cs AverageShortTradePercentageReturn.cs AverageTradePercentageReturn.cs BuyAndHoldPercentageReturn.cs LargestLosingTradePercentage.cs LargestWinningTradePercentage.cs MaxEquityDrawDown.cs NumberWinningLongTrades.cs NumberWinningShortTrades.cs NumberWinningTrades.cs ReturnOnAccount.cs SummaryRow.cs TotalCommissionAmount.cs TotalNetProfit.cs TotalNumberOfLongTrades.cs TotalNumberOfShortTrades.cs TotalNumberOfTrades.cs Log Message: Added serializable attribute (to Glauco: remember next time to add this attribute! ) Index: AverageLongTradePercentageReturn.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/AverageLongTradePercentageReturn.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AverageLongTradePercentageReturn.cs 16 Nov 2003 17:18:45 -0000 1.1 --- AverageLongTradePercentageReturn.cs 15 Feb 2005 19:09:02 -0000 1.2 *************** *** 10,14 **** /// Summary description for TotalNumberOfTrades. /// </summary> ! public class AverageLongTradePercentageReturn : SummaryRow { public AverageLongTradePercentageReturn( Summary summary ) --- 10,15 ---- /// Summary description for TotalNumberOfTrades. /// </summary> ! [Serializable] ! public class AverageLongTradePercentageReturn : SummaryRow { public AverageLongTradePercentageReturn( Summary summary ) Index: NumberWinningShortTrades.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/NumberWinningShortTrades.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NumberWinningShortTrades.cs 16 Nov 2003 17:18:45 -0000 1.1 --- NumberWinningShortTrades.cs 15 Feb 2005 19:09:03 -0000 1.2 *************** *** 10,14 **** /// Summary description for TotalNumberOfTrades. /// </summary> ! public class NumberWinningShortTrades : SummaryRow { public NumberWinningShortTrades( Summary summary ) --- 10,15 ---- /// Summary description for TotalNumberOfTrades. /// </summary> ! [Serializable] ! public class NumberWinningShortTrades : SummaryRow { public NumberWinningShortTrades( Summary summary ) Index: TotalNumberOfShortTrades.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/TotalNumberOfShortTrades.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TotalNumberOfShortTrades.cs 16 Nov 2003 17:18:45 -0000 1.1 --- TotalNumberOfShortTrades.cs 15 Feb 2005 19:09:04 -0000 1.2 *************** *** 10,14 **** /// Summary description for TotalNumberOfTrades. /// </summary> ! public class TotalNumberOfShortTrades : SummaryRow { public TotalNumberOfShortTrades( Summary summary ) --- 10,15 ---- /// Summary description for TotalNumberOfTrades. /// </summary> ! [Serializable] ! public class TotalNumberOfShortTrades : SummaryRow { public TotalNumberOfShortTrades( Summary summary ) Index: MaxEquityDrawDown.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/MaxEquityDrawDown.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MaxEquityDrawDown.cs 9 Nov 2003 19:44:40 -0000 1.1 --- MaxEquityDrawDown.cs 15 Feb 2005 19:09:03 -0000 1.2 *************** *** 8,12 **** /// Summary description for TotalNumberOfTrades. /// </summary> ! public class MaxEquityDrawDown : SummaryRow { private Summary summary; --- 8,13 ---- /// Summary description for TotalNumberOfTrades. /// </summary> ! [Serializable] ! public class MaxEquityDrawDown : SummaryRow { private Summary summary; Index: NumberWinningTrades.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/NumberWinningTrades.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NumberWinningTrades.cs 16 Nov 2003 17:18:45 -0000 1.1 --- NumberWinningTrades.cs 15 Feb 2005 19:09:04 -0000 1.2 *************** *** 10,14 **** /// Summary description for TotalNumberOfTrades. /// </summary> ! public class NumberWinningTrades : SummaryRow { public NumberWinningTrades( Summary summary ) --- 10,15 ---- /// Summary description for TotalNumberOfTrades. /// </summary> ! [Serializable] ! public class NumberWinningTrades : SummaryRow { public NumberWinningTrades( Summary summary ) Index: AnnualSystemPercentageReturn.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/AnnualSystemPercentageReturn.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AnnualSystemPercentageReturn.cs 28 Nov 2003 15:49:31 -0000 1.2 --- AnnualSystemPercentageReturn.cs 15 Feb 2005 19:09:02 -0000 1.3 *************** *** 10,13 **** --- 10,14 ---- /// Summary description for TotalNumberOfTrades. /// </summary> + [Serializable] public class AnnualSystemPercentageReturn : SummaryRow { Index: ReturnOnAccount.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/ReturnOnAccount.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ReturnOnAccount.cs 28 Nov 2003 16:12:06 -0000 1.2 --- ReturnOnAccount.cs 15 Feb 2005 19:09:04 -0000 1.3 *************** *** 8,12 **** /// Summary description for TotalNumberOfTrades. /// </summary> ! public class ReturnOnAccount : SummaryRow { public ReturnOnAccount( Summary summary ) --- 8,13 ---- /// Summary description for TotalNumberOfTrades. /// </summary> ! [Serializable] ! public class ReturnOnAccount : SummaryRow { public ReturnOnAccount( Summary summary ) Index: NumberWinningLongTrades.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/NumberWinningLongTrades.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NumberWinningLongTrades.cs 16 Nov 2003 17:18:45 -0000 1.1 --- NumberWinningLongTrades.cs 15 Feb 2005 19:09:03 -0000 1.2 *************** *** 10,14 **** /// Summary description for TotalNumberOfTrades. /// </summary> ! public class NumberWinningLongTrades : SummaryRow { public NumberWinningLongTrades( Summary summary ) --- 10,15 ---- /// Summary description for TotalNumberOfTrades. /// </summary> ! [Serializable] ! public class NumberWinningLongTrades : SummaryRow { public NumberWinningLongTrades( Summary summary ) Index: LargestWinningTradePercentage.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/LargestWinningTradePercentage.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** LargestWinningTradePercentage.cs 16 Nov 2003 17:18:45 -0000 1.1 --- LargestWinningTradePercentage.cs 15 Feb 2005 19:09:03 -0000 1.2 *************** *** 10,14 **** /// Summary description for TotalNumberOfTrades. /// </summary> ! public class LargestWinningTradePercentage : SummaryRow { public LargestWinningTradePercentage( Summary summary ) --- 10,15 ---- /// Summary description for TotalNumberOfTrades. /// </summary> ! [Serializable] ! public class LargestWinningTradePercentage : SummaryRow { public LargestWinningTradePercentage( Summary summary ) Index: TotalNumberOfTrades.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/TotalNumberOfTrades.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TotalNumberOfTrades.cs 9 Nov 2003 19:46:38 -0000 1.1 --- TotalNumberOfTrades.cs 15 Feb 2005 19:09:04 -0000 1.2 *************** *** 8,12 **** /// Summary description for TotalNumberOfTrades. /// </summary> ! public class TotalNumberOfTrades : SummaryRow { public TotalNumberOfTrades( Summary summary ) --- 8,13 ---- /// Summary description for TotalNumberOfTrades. /// </summary> ! [Serializable] ! public class TotalNumberOfTrades : SummaryRow { public TotalNumberOfTrades( Summary summary ) Index: SummaryRow.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/SummaryRow.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SummaryRow.cs 9 Nov 2003 19:43:01 -0000 1.1 --- SummaryRow.cs 15 Feb 2005 19:09:04 -0000 1.2 *************** *** 6,9 **** --- 6,10 ---- /// Summary description for SummaryRow. /// </summary> + [Serializable] public class SummaryRow { Index: TotalNetProfit.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/TotalNetProfit.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TotalNetProfit.cs 10 Nov 2003 21:36:36 -0000 1.1 --- TotalNetProfit.cs 15 Feb 2005 19:09:04 -0000 1.2 *************** *** 8,12 **** /// Summary description for TotalNumberOfTrades. /// </summary> ! public class TotalNetProfit : SummaryRow { public TotalNetProfit( Summary summary ) --- 8,13 ---- /// Summary description for TotalNumberOfTrades. /// </summary> ! [Serializable] ! public class TotalNetProfit : SummaryRow { public TotalNetProfit( Summary summary ) Index: TotalCommissionAmount.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/TotalCommissionAmount.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TotalCommissionAmount.cs 13 Feb 2005 21:00:49 -0000 1.1 --- TotalCommissionAmount.cs 15 Feb 2005 19:09:04 -0000 1.2 *************** *** 11,15 **** /// commission amount. /// </summary> ! public class TotalCommissionAmount : SummaryRow { public TotalCommissionAmount( Summary summary ) --- 11,16 ---- /// commission amount. /// </summary> ! [Serializable] ! public class TotalCommissionAmount : SummaryRow { public TotalCommissionAmount( Summary summary ) Index: TotalNumberOfLongTrades.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/TotalNumberOfLongTrades.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TotalNumberOfLongTrades.cs 16 Nov 2003 17:18:45 -0000 1.1 --- TotalNumberOfLongTrades.cs 15 Feb 2005 19:09:04 -0000 1.2 *************** *** 10,14 **** /// Summary description for TotalNumberOfTrades. /// </summary> ! public class TotalNumberOfLongTrades : SummaryRow { public TotalNumberOfLongTrades( Summary summary ) --- 10,15 ---- /// Summary description for TotalNumberOfTrades. /// </summary> ! [Serializable] ! public class TotalNumberOfLongTrades : SummaryRow { public TotalNumberOfLongTrades( Summary summary ) Index: AverageTradePercentageReturn.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/AverageTradePercentageReturn.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AverageTradePercentageReturn.cs 16 Nov 2003 17:18:45 -0000 1.1 --- AverageTradePercentageReturn.cs 15 Feb 2005 19:09:02 -0000 1.2 *************** *** 10,14 **** /// Summary description for TotalNumberOfTrades. /// </summary> ! public class AverageTradePercentageReturn : SummaryRow { public AverageTradePercentageReturn( Summary summary ) --- 10,15 ---- /// Summary description for TotalNumberOfTrades. /// </summary> ! [Serializable] ! public class AverageTradePercentageReturn : SummaryRow { public AverageTradePercentageReturn( Summary summary ) Index: AverageShortTradePercentageReturn.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/AverageShortTradePercentageReturn.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AverageShortTradePercentageReturn.cs 16 Nov 2003 17:18:45 -0000 1.1 --- AverageShortTradePercentageReturn.cs 15 Feb 2005 19:09:02 -0000 1.2 *************** *** 10,14 **** /// Summary description for TotalNumberOfTrades. /// </summary> ! public class AverageShortTradePercentageReturn : SummaryRow { public AverageShortTradePercentageReturn( Summary summary ) --- 10,15 ---- /// Summary description for TotalNumberOfTrades. /// </summary> ! [Serializable] ! public class AverageShortTradePercentageReturn : SummaryRow { public AverageShortTradePercentageReturn( Summary summary ) Index: LargestLosingTradePercentage.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/LargestLosingTradePercentage.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** LargestLosingTradePercentage.cs 16 Nov 2003 17:18:45 -0000 1.1 --- LargestLosingTradePercentage.cs 15 Feb 2005 19:09:03 -0000 1.2 *************** *** 10,14 **** /// Summary description for TotalNumberOfTrades. /// </summary> ! public class LargestLosingTradePercentage : SummaryRow { public LargestLosingTradePercentage( Summary summary ) --- 10,15 ---- /// Summary description for TotalNumberOfTrades. /// </summary> ! [Serializable] ! public class LargestLosingTradePercentage : SummaryRow { public LargestLosingTradePercentage( Summary summary ) Index: BuyAndHoldPercentageReturn.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows/BuyAndHoldPercentageReturn.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** BuyAndHoldPercentageReturn.cs 9 Jan 2005 22:14:36 -0000 1.3 --- BuyAndHoldPercentageReturn.cs 15 Feb 2005 19:09:03 -0000 1.4 *************** *** 12,16 **** /// Summary description for TotalNumberOfTrades. /// </summary> ! public class BuyAndHoldPercentageReturn : SummaryRow { public BuyAndHoldPercentageReturn( Summary summary , --- 12,17 ---- /// Summary description for TotalNumberOfTrades. /// </summary> ! [Serializable] ! public class BuyAndHoldPercentageReturn : SummaryRow { public BuyAndHoldPercentageReturn( Summary summary , |