MemExchange.Server.Processor.Book.Orders.StopLimitOrder.StopLimitOrder C# (CSharp) Méthode

StopLimitOrder() public méthode

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
Résultat 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;
        }