Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Delisting"/> class
 /// </summary>
 /// <param name="symbol">The delisted symbol</param>
 /// <param name="date">The date the symbol was delisted</param>
 /// <param name="price">The final price before delisting</param>
 /// <param name="type">The type of delisting event</param>
 public Delisting(Symbol symbol, DateTime date, decimal price, DelistingType type)
     : this()
 {
     Symbol = symbol;
     Time   = date;
     Value  = price;
     Type   = type;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Delisting"/> class
 /// </summary>
 /// <param name="symbol">The delisted symbol</param>
 /// <param name="date">The date the symbol was delisted</param>
 /// <param name="price">The final price before delisting</param>
 /// <param name="type">The type of delisting event</param>
 public Delisting(Symbol symbol, DateTime date, decimal price, DelistingType type)
     : this()
 {
     Symbol = symbol;
     Time = date;
     Value = price;
     Type = type;
 }