9

使用 Java API(我猜这适用于任何其他 TWS Interactive Brokers 客户端 API)我收到一个错误“没有为请求找到安全定义”FAQ 和其他资源完全没有帮助。

    Contract contract = new Contract();

    int id = incId;           

    System.out.println("Oder Id " + id );

    // use UTC seconds as transaction id

    // This is the problem you need to have a blank contractId
    contract.m_conId = 12345;
    contract.m_symbol = signal.symbol;
    contract.m_secType = "STK";
    contract.m_expiry = "";
    contract.m_strike = 0;
    contract.m_exchange = "SMART";
    contract.m_primaryExch = "ISLAND";
    contract.m_currency = "USD";

    //etc

    Order order = new Order();

    // set order fields
    order.m_account = "XXXXXX";
    order.m_orderId = id;
    //etc

    GetInstance().wrapper.m_client.placeOrder(id, contract, order);
4

6 回答 6

4

这里的关键是contractId 字段应该留空。使用 contractId 提交会导致安全错误。

于 2013-12-12T20:12:05.657 回答
2

通过将交换设置为“SMART”为我解决了这个问题。

我的用例是获取我目前持有的所有合同并发送 MOC 订单。我使用 reqPositions 方法获得了合同,但是这些返回值中的合同仍然给出了这个错误。

在这些合同上将交换设置为 SMART 为我解决了这个问题。

于 2019-08-26T14:29:46.037 回答
1

在某些情况下,交换需要留空。我有一些运气使用这个查找:

https://pennies.interactivebrokers.com/cstools/contract_info/v3.9/index.php

例如,对于 CL:

con.connect()

contract = Contract()
contract.m_symbol = "CL"
contract.m_exchange = ""
contract.m_currency = "USD"
contract.m_secType = "FUT"

con.reqContractDetails(1, contract)

time.sleep(2)

con.disconnect()
于 2016-02-23T14:23:44.887 回答
1

此错误的其他可能原因可能包括:

-ConId 应设置为 0。

- TradingClass 应该留空。

-LocalSymbol 或 GlobalSymbol 的问题。

-其他合同变量设置不正确。

- 请求的具体合同目前在市场上不存在。

于 2016-09-02T19:51:51.233 回答
0

我遇到了同样的问题,但这是因为我没有填写SecIdTypeSecId的值。

这是有效的订单和请求的示例:

IBApi.Order order = new IBApi.Order()
{
    Account = OrderCreationConfig.IndividualAccount
    , ClientId = OrderCreationConfig.OrderSlaveClientId //1
    , Action = orderNodeEntity.OrderAction //"BUY"
    , TotalQuantity = orderNodeEntity.NrOfStocks
    , OrderType = OrderCreationConfig.OrderTypeLMT //"LMT"
    , Tif = OrderCreationConfig.OrderTifGTC //"GTC"
    , OcaType = OrderCreationConfig.OcaTypeId //3
    , LmtPrice = price
    , AuxPrice = 0
    , TrailStopPrice = double.MaxValue
    , VolatilityType = 0
    , DeltaNeutralOrderType = "None"
};

IBApi.Contract contract = new IBApi.Contract()
{
      Symbol = orderNodeEntity.Symbol
     , SecType = OrderCreationConfig.ContractSecTypeSTK //"STK"
     , Strike = 0
     , Right = OrderCreationConfig.ContractRightQuestionMark //"?"
     , Exchange = OrderCreationConfig.ContractExchangeIsland //"ISLAND"
     , Currency = OrderCreationConfig.ContractCurrencyUSD //"USD"
     , LocalSymbol = orderNodeEntity.Symbol
     , TradingClass = null        
     , SecIdType = OrderCreationConfig.ContractSecIdTypeISIN //"ISIN"
     , SecId = this.GetISINCode(orderNodeEntity.Symbol) //"US0378331005" 
};
于 2019-07-24T15:20:52.823 回答
0

还要确保为您的合同选择正确的 lastTradeDateOrContractMonth。当试图在不合法的到期日出售期权时,我遇到了同样的错误......

于 2021-01-06T09:22:06.547 回答