天软金融分析.NET函数大全 > 金融报表分析 > 03.行业板块 > 3.14募集资金 > 3.14.01募集情况

TSWEB_Block_IPOdetail    

简述
返回从开始日期到截止日期指定板块中所有股票的发行上市明细。
定义
TSWEB_Block_IPOdetail (Bkname: String;BegT: TDateTime;EndT: TDateTime; IndustryType: Integer): Array
参数
名称类型说明
Bkname String字符串。板块名称
BegT TDateTimeTDateTime类型。开始日期
EndT TDateTimeTDateTime类型。截止日期
IndustryType Integer整型。所属行业,取值如下:
显示名 取值
申万一级行业 1
申万二级行业 2
申万三级行业 3
中证一级行业 4
中证二级行业 5
中证三级行业 6
证监会一级行业 7
证监会二级行业 8
返回 Array数组,从开始日期到截止日期指定板块中所有股票的发行上市明细。
  • 范例

    //返回2023-07-10至2024-07-10日A股中证一级行业中所有股票的发行上市明细
    IndustryType:=4;
    Bkname:= "A股";
    BegT:=inttodate(20230710);
    EndT:=inttodate(20240710);
    return TSWEB_Block_IPOdetail(Bkname,BegT,EndT,IndustryType);

    结果:
相关