天软金融分析.NET函数大全 > 金融报表分析 > 03.行业板块 > 3.12沪深港通

TSWEB_Market_HSGIndustryInfo_N    

简述
报表,获取陆股通区间行业配置及变动(市值单位:亿元)
定义
TSWEB_Market_HSGIndustryInfo_N (BegT: TDateTime;EndT: TDateTime; IndustryType: Integer): Array
参数
名称类型说明
BegT TDateTimeTDateTime类型。开始日期
EndT TDateTimeTDateTime类型。截止日期
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_HSGIndustryInfo_N(BegT,EndT,IndustryType);

    结果:
相关