我正在尝试使用 nsepy 获取股票历史记录,但 nsepy.get_history() 调用返回符号"PVR"为空



我正在尝试使用 nsepy 获取股票历史记录。 get_history(( 调用返回除"PVR"之外的所有符号的历史记录,该符号为空。

这是代码

PVR = get_history(symbol='PVR',
start=date(2018,5,1), 
end=date(2018,5,10))
print(PVR)

给出输出

Empty DataFrame
Columns: [Symbol, Series, Prev Close, Open, High, Low, Last, Close, VWAP, Volume, Turnover, Trades, Deliverable Volume, %Deliverble]
Index: []

在小写字母 'pvr' 中使用符号。 尝试以下代码:

PVR = get_history(symbol='pvr',
start=date(2018,5,1),
end=date(2018,5,10))
print(PVR)

这对我有用。

相关内容

  • 没有找到相关文章