天软金融分析.NET函数大全 > 金融函数 > 基金 > 业绩基准收益 > 指定日

FundBenchmarkReturnOf3Month    

简述

  最近3月业绩基准收益(%),
   与系统参数(基金代码)、截止日相关;
定义
FundBenchmarkReturnOf3Month(EndT:TDateTime):Real
参数
名称类型说明
EndTTDateTime日期,截止日期
返回Real最近3月业绩基准收益(%)
  • 范例

       // "OF001015"在20251231的基金最近3月业绩比较基准收益率(%)
      SetSysParam(pn_stock(),"OF001015");
      EndT:=20251231T;
      return FundBenchmarkReturnOf3Month(EndT); //结果:0.1699
相关