Update of /cvsroot/quantproject/QuantProject/b4_Business/a2_Strategies
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv1085/b4_Business/a2_Strategies
Modified Files:
SignedTickers.cs
Log Message:
The Tickers property has been added
Index: SignedTickers.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a2_Strategies/SignedTickers.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** SignedTickers.cs 21 Aug 2007 22:07:15 -0000 1.2
--- SignedTickers.cs 27 Aug 2007 22:22:03 -0000 1.3
***************
*** 55,58 ****
--- 55,73 ----
}
}
+ /// <summary>
+ /// Array of the tickers (without sign)
+ /// </summary>
+ public string[] Tickers
+ {
+ get
+ {
+ string[] arrayForTickers = new string[ List.Count ];
+ for ( int i = 0 ; i < List.Count ; i++ )
+ {
+ arrayForTickers[ i ] = ((SignedTicker)(List[ i ])).Ticker;
+ }
+ return arrayForTickers;
+ }
+ }
public SignedTickers()
{
|