FastQuant.ExecutionSimulator.GetOrdersBy C# (CSharp) Méthode

GetOrdersBy() private méthode

private GetOrdersBy ( int instrumentId, bool create = false ) : List
instrumentId int
create bool
Résultat List
        private List<Order> GetOrdersBy(int instrumentId, bool create = false)
        {
            if (this.ordersByInstrumentId[instrumentId] == null && create)
                this.ordersByInstrumentId[instrumentId] = new List<Order>();
            return this.ordersByInstrumentId[instrumentId];
        }
    }