We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5498c2 commit 1802742Copy full SHA for 1802742
tigeropen/examples/quote_client_demo.py
@@ -110,13 +110,13 @@ def get_fundamental():
110
111
# 行业数据
112
# 获取行业列表
113
- industries = quote_client.get_industry_list(IndustryLevel.GGROUP)
+ industries = openapi_client.get_industry_list(IndustryLevel.GGROUP)
114
print(industries)
115
# 获取某行业下公司列表
116
- industry_stocks = quote_client.get_industry_stocks(50101020)
+ industry_stocks = openapi_client.get_industry_stocks(50101020)
117
print(industry_stocks)
118
# 获取某股票的行业
119
- stock_industry = quote_client.get_stock_industry('AAPL', Market.US)
+ stock_industry = openapi_client.get_stock_industry('AAPL', Market.US)
120
print(stock_industry)
121
122
0 commit comments