天软金融分析.NET函数大全 > 金融函数 > 基本面 > 区间报表 > 股票库 > 分红送配

StockDistributionQk    

简述
指定区间内的配股情况
定义
StockDistributionQk(StockID:String;BegT:TDateTime;EndT:TDateTime;FilterField:String):Array;
参数
名称类型说明
StockIDString股票代码
BegTTDateTime开始时间
EndTTDateTime截止时间
FilterfieldString过虑字段
返回Array返回指定区间内的配股情况
  • 范例


    StockID :="SZ000002";
    BegT := inttodate(19900101);
    EndT := inttodate(20111231);

    return StockDistributionQk(StockID,BegT,EndT,”除权日”);

    结果:
相关