我在找API
都是10年的季刊。
到目前为止,我看到的是:
有人有这方面的apis/源代码吗?我不介意付钱,但我想先用尽我所有的选择。我的api调用计数不会那么高(每月不足200次,不需要时间)
发布于 2022-09-10 13:49:31
Sharadar是我所知道的以合理的价格为美国股票提供高质量的历史基础数据的最好来源,历史可以追溯到1998年。他们的数据与QuantRocket集成,我可以保证质量。如果用例涉及分析和反测试,您可以购买数据通过QuantRocket,也可以购买独立通过纳斯达克数据链路。
发布于 2022-10-23 12:31:42
尝试使用API https://rapidapi.com/telescopeanalytics-hl8pcoeL44o/api/telescope-stocks-options-price-charts/。此API提供了从世界各地证券交易所获取实际信息的途径。它支持获取有关排放物和股票价格变化历史的信息。
示例:
import requests
url = "https://telescope-stocks-options-price-charts.p.rapidapi.com/stocks/AAPL"
querystring = {"modules":"assetProfile,summaryProfile,price"}
headers = {
"X-RapidAPI-Key": "YOUR_API_KEY",
"X-RapidAPI-Host": "telescope-stocks-options-price-charts.p.rapidapi.com"
}
response = requests.request("GET", url, headers=headers, params=querystring)
print(response.text)https://stackoverflow.com/questions/73668760
复制相似问题