MemExchange.Server.Processor.Book.Orders.StopLimitOrder.StopLimitOrder C# (CSharp) Method

StopLimitOrder() public method

public StopLimitOrder ( string symbol, int quantity, double limitPrice, double triggerPrice, WayEnum way, int clientId, IBestPriceTrigger trigger ) : System
symbol string
quantity int
limitPrice double
triggerPrice double
way WayEnum
clientId int
trigger IBestPriceTrigger
return System
        public StopLimitOrder(string symbol, int quantity, double limitPrice, double triggerPrice, WayEnum way, int clientId, IBestPriceTrigger trigger)
        {
            this.way = way;
            this.symbol = symbol;
            this.exchangeOrderId = 0;
            this.clientId = clientId;
            this.triggerPrice = triggerPrice;
            this.limitPrice = limitPrice;
            this.quantity = quantity;
            Trigger = trigger;
        }