using System; namespace Krs.Ats.IBNet.Contracts { /// /// Equity Class - uses default constructors for creating an equity contract. /// /// [Serializable()] public class Equity : Contract { /// /// Create an Equity Contract for Smart Exchanges /// /// Symbol of the equity contract. See . public Equity(string symbol) : base(symbol, "Smart", SecurityType.Stock, "USD") { } /// /// Create an Equity Contract for a specific exchange /// /// Symbol for the equity contract. See . /// Exchange for the equity contract. See public Equity(string symbol, string exchange) : base(symbol, exchange, SecurityType.Stock, "USD") { } } }