, , SecIdType SecId.
, :
IBApi.Order order = new IBApi.Order()
{
Account = OrderCreationConfig.IndividualAccount
, ClientId = OrderCreationConfig.OrderSlaveClientId
, Action = orderNodeEntity.OrderAction
, TotalQuantity = orderNodeEntity.NrOfStocks
, OrderType = OrderCreationConfig.OrderTypeLMT
, Tif = OrderCreationConfig.OrderTifGTC
, OcaType = OrderCreationConfig.OcaTypeId
, LmtPrice = price
, AuxPrice = 0
, TrailStopPrice = double.MaxValue
, VolatilityType = 0
, DeltaNeutralOrderType = "None"
};
IBApi.Contract contract = new IBApi.Contract()
{
Symbol = orderNodeEntity.Symbol
, SecType = OrderCreationConfig.ContractSecTypeSTK
, Strike = 0
, Right = OrderCreationConfig.ContractRightQuestionMark
, Exchange = OrderCreationConfig.ContractExchangeIsland
, Currency = OrderCreationConfig.ContractCurrencyUSD
, LocalSymbol = orderNodeEntity.Symbol
, TradingClass = null
, SecIdType = OrderCreationConfig.ContractSecIdTypeISIN
, SecId = this.GetISINCode(orderNodeEntity.Symbol)
};