MemExchange.Server.Processor.Book.Orders.StopLimitOrder.StopLimitOrder C# (CSharp) 메소드

StopLimitOrder() 공개 메소드

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
리턴 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;
        }