ts.get_hist_data(stock['code'], start='2021-08-05', end=cur_date.strftime('%Y-%m-%d')) \ .reset_index()[['date', 'open', 'close', 'low', 'high']]
时间: 2023-08-06 10:21:03 浏览: 108
Python库 | hist_loss-0.0.8-py3.7.egg
这段代码是使用 tushare 库获取股票历史交易数据,其中 stock['code'] 是股票代码,start 是起始日期,end 是结束日期。这个函数返回的是一个 pandas DataFrame 对象,并对其进行了一些操作,包括重置索引、选择特定列。最终返回的是一个包含 date、open、close、low、high 五个列的数据表格。其中 date 列是日期,open 列是开盘价,close 列是收盘价,low 列是最低价,high 列是最高价。
阅读全文