Python Pandas API for Yahoo finance - 如何获取出价和其他字段
Python Pandas API for Yahoo finance - how to get the bid ask prices and other fields
我想使用 python 3.
获取 Yahoo Finance 上股票的出价和要价
对于开盘价和收盘价,我使用 pandas DataReader 功能。
是否可以调整此 API 以读取股票的出价、要价或任何其他特征?
from pandas_datareader import data as web
security = web.DataReader("AAPL", "yahoo", start=startDate, end=endDate)
没有。它使用的 Yahoo API 仅提供每日的、基于交易的柱状图。更详细的信息通常以 public、免费、合法 API 不会提供的方式获得许可。
我想使用 python 3.
获取 Yahoo Finance 上股票的出价和要价对于开盘价和收盘价,我使用 pandas DataReader 功能。
是否可以调整此 API 以读取股票的出价、要价或任何其他特征?
from pandas_datareader import data as web
security = web.DataReader("AAPL", "yahoo", start=startDate, end=endDate)
没有。它使用的 Yahoo API 仅提供每日的、基于交易的柱状图。更详细的信息通常以 public、免费、合法 API 不会提供的方式获得许可。