天软金融分析.NET函数大全 > 金融函数 > 板块 > 基金板块 > 份额结构 > 中间函数

FundsTSDecrease    

简述
返回基金列表FundArr中发生净赎回的基金。通过不同时点基金份额变化计算净赎回。
定义
FundsTSDecrease(FundArr:Array;BegT:DateTime;EndT:DateTime;FundType:Int):Real
参数
名称类型说明
FundArrArray一维字符串数组,基金列表
BegTDateTime日期,开始日期
EndTDateTime日期,截止日期
FundTypeInt整型,基金类型
显示名 取值
全部 -1
混合型 0
股票型 1
保本型 2
货币型 3
债券型 4
商品型 5
股票+混合 6
混合+债券 7
债券+保本 8
非货币型 9
返回Real实数
  • 范例

    //深证基金、上证基金、开放式基金2018年1-3月发生净赎回的基金
         FundArr := getbk("深证基金;上证基金;开放式基金");
         return FundsTSDecrease(FundArr,20180101T,20180301T,7);

    结果:
     
    OF159901
    OF159902
    OF159903
    OF159906
    OF159909
    OF159912
    OF159919
    OF159926
    OF159930
    OF159931
相关