沪深市场总体指标(月)


接口:a_market_index
描述:获取中国沪深市场总体指标
限量:单次最大10000
数据更新频率:日
数据更新时间:00:00;17:00

输入参数

名称 类型 必选 描述
month str N 月份
exchange str N 交易所

输出参数

名称 类型 默认显示 描述
month str Y 月份
exchange str Y 交易所
listed_company_num float Y 上市公司总数(家)
listed_securities_num float Y 上市证券总数
listed_stock_num float Y 上市股票总数
listed_ashare_num float Y 上市A股总数
listed_bshare_num float Y 上市B股总数
stock_total_capital float Y 股票-总股本(亿元)
stock_total_market_value float Y 股票-总市值(亿元)
stock_flow_equity float Y 股票-流通股本(亿股)
stock_flow_market_value float Y 股票-流通市值(亿元)
open_accounts_num float Y 投资者开户总数(万户)
average_pe float Y 平均市盈率
ashare_average_pe float Y A股平均市盈率
bshare_average_pe float Y B股平均市盈率
stock_fund_transaction_amount float Y 股票、基金成交金额:当年累计(亿元)
ashare_transaction_amount float Y A股成交金额:当年累计(亿元)
bshare_transaction_amount float Y B股成交金额:当年累计(亿元)
fund_transaction_amount float Y 基金成交金额:当年累计(亿元)
bond_transaction_amount float Y 债券成交金额:当年累计(亿元)
ashare_stamp_duty float Y 代扣A股交易印花税(亿元)
bshare_stamp_duty float Y 代扣B股交易印花税(亿美元/港币)
stock_repurchase_amount float Y 股票回购金额:当年累计

表信息

表中文名 表名 说明
沪深市场总体指标(月) AShareMarketOverallindex 记录沪深交易所每月各项总体指标值及变动幅度

示例

安装Python包

pip install dcube

导入datacube

import dcube as dc

用token初始化pro接口

pro = dc.pro_api('your token')

数据调取

df = pro.query('a_market_index', month='200707', fields='month,exchange,listed_company_num,listed_securities_num')

或者

df = pro.a_market_index(month='200707')
置顶