using System; namespace Krs.Ats.IBNet.Contracts { /// /// Create a contract with the default parameters for an indice /// /// [Serializable()] public class Index : Contract { /// /// Create an Indice Contract for a specific exchange /// /// Symbol for the indice contract. See . /// Exchange for the indice contract. See public Index(string symbol, string exchange) : base(symbol, exchange, SecurityType.Index, "USD") { } } }