天软金融分析.NET函数大全 > 金融函数 > 专题函数 > 因子研究 > 基金公司因子

funds_rpt_DistributionOfScales    

简述
规模分布
定义
funds_rpt_DistributionOfScales(funds:Array;Rdate:ReportDateList;GroupArr:Array):Array
参数
名称类型说明
fundsArray一维字符串数组,基金序列
RdateReportDateList报告期,报告期
GroupArrArray一维数字数组, 一维数字数组,自定义规模分组,单位(亿),示例:array(2,20,100)       如果为正整数,表示频数分组数,从小到大分组,最小的为第1组
返回ArrayArray,规模分布
  • 范例

        funds := Array("OF000001","OF000003","OF000004");    Rdate := 20201231;    GroupArr := array(2,20,100);    return funds_rpt_DistributionOfScales(funds,Rdate,GroupArr);

相关