TSWEB_Market_CollectMoneyofIndustryTop10
简述
按行业对全市场股票进行分组,然后返回从开始日期到截止日期、募集资金排名前十的行业以及相应的募集资金数据。
TSWEB_Market_CollectMoneyofIndustryTop10 (BegT: TDateTime;EndT: TDateTime; IndustryType: Integer): Array
名称 | 类型 | 说明 |
---|
BegT | TDateTime | TDateTime类型。开始日期 |
EndT | TDateTime | TDateTime类型。截止日期 |
IndustryType | Integer | 整型。 所属行业,取值如下:
显示名 |
取值 |
申万一级行业 |
1 |
申万二级行业 |
2 |
申万三级行业 |
3 |
中证一级行业 |
4 |
中证二级行业 |
5 |
中证三级行业 |
6 |
证监会一级行业 |
7 |
证监会二级行业 |
8 |
|
返回 | Array | 二维数组,按行业对全市场股票进行分组后从开始日期到截止日期、募集资金排名前十的行业以及相应的募集资金数据。 |
//返回2023-07-10至2024-07-10日按行业对全市场股票进行分组,中证一级行业募集资金排名前十的行业以及相应的募集资金数据
IndustryType:=4;
BegT:=inttodate(20230710);
EndT:=inttodate(20240710);
return TSWEB_Market_CollectMoneyofIndustryTop10(BegT,EndT,IndustryType);
结果:
