知识库 > 金融建模 > 公用函数 > 扩展函数 > .Net扩展函数 > 基金 > 分红送配

FundPFAmount(BegT,EndT)    

简述
区间分红总额(万),与系统股票pn_stock()相关。
定义
FundPFAmount(BegT:Date,EndT:Date):Real
参数

BegT:开始日期
EndT:截止日期

返回:实数,区间分红总额(万)
  • 范例:

    //取基金金泰2008年2月1日到2010年3月5日之间的分红总额(万)
    Setsysparam(pn_stock(),'SH500001');     
    Return FundPFAmount (inttodate(20080201),inttodate(20100305));
    //结果:336476         

相关