using System; using System.ComponentModel; namespace Krs.Ats.IBNet { /// /// Order Action Side. Specifies whether securities should be bought or sold. /// [Serializable()] public enum ActionSide { /// /// Security is to be bought. /// [Description("BUY")] Buy, /// /// Security is to be sold. /// [Description("SELL")] Sell, /// /// Undefined /// [Description("")] Undefined, /// /// Sell Short as part of a combo leg /// [Description("SSHORT")] SShort, /// /// Short Sale Exempt action. /// SSHORTX allows some orders to be marked as exempt from the new SEC Rule 201 /// [Description("SSHORTX")] SShortX } }