从ReqhistoricalData中提取多个合同不起作用



我试图将重新刻度data的结果存储到数据范围的字典中,其中每个键是股票名称,值是相应的时间序列数据框架。

def historical_data_handler(msg):
    global hist, df
    if "finished" in msg.date:
        df = pd.DataFrame(index=np.arange(0, len(hist)), columns=('date', 'open', 'high', 'low', 'close', 'volume'))
        for index, msg in enumerate(hist):
            df.loc[index,'date':'volume'] = datetime.strptime(msg.date, '%Y%m%d %H:%M:%S'), msg.open, msg.high, msg.low, msg.close, msg.volume
     else:   
         hist.append(msg)

def error_handler(msg):
    print(msg)
con = ibConnection(port=7496,clientId=75)
con.register(historical_data_handler, message.historicalData)
con.register(error_handler, message.Error)
con.connect()  
print("Connection to IB is ", con.isConnected(), " and starting data pull")
contracts = ["SPY", "AAPL"]
result = {}
for ct in contracts:
    hist = []    
    spec = Contract()  
    spec.m_symbol = ct
    spec.m_secType = 'STK'  
    spec.m_exchange = 'SMART'  
    spec.m_currency = 'USD'
    spec.m_expiry = '' # For futures
    con.reqHistoricalData(0, spec, '', '2 D', '5 mins', 'TRADES', 0, 1)
    print(spec.m_symbol, hist, df)
    result[ct] = df
print("Connection is terminated ", con.disconnect(), " after finishing pulling data")

代码的行为不是我期望的。当我查看我的"结果"词典时。这些值在"间谍"one_answers" appl"之间相同。我认为我如何定义全局变量有问题,因为它们似乎在for循环中不正确更新。

任何帮助将不胜感激,谢谢!

当我查看"结果"中存储的两个数据范围的头部(它们是相同(时:

[326 rows x 6 columns]
 SPY                      date    open    high     low   close volume
 0    2018-02-09 04:00:00  261.08  261.16  260.92  260.99     68
 1    2018-02-09 04:05:00  260.99     261  260.86  260.99     59
[326 rows x 6 columns]
 AAPL                      date    open    high     low   close volume
 0    2018-02-09 04:00:00  261.08  261.16  260.92  260.99     68
 1    2018-02-09 04:05:00  260.99     261  260.86  260.99     59

仅查看数据,看来您的排大约是两天的两倍。在处理IB的答复之前,hist = []连续运行两次。因此,您必须在一个列表中获取间谍和AAPL的所有数据。

尝试在数据处理程序的完成分支中清除历史记录。我认为这也是您也应该要求下一份合同的地方。然后,如果您索要更多数据,则可以放置sleep(10)以避免违规行为。

相关内容

  • 没有找到相关文章

最新更新