天软金融分析.NET函数大全 > 金融函数 > 财务分析 > 扩展基本面数据

LastYearTBGrowRatio    

简述
返回年度数据同比,本年度报告期财务数据与去年年度财务数据比较
定义
LastYearTBGrowRatio (RDate:Integer;ID:Integer;ResultType:Integer):Real
参数
名称类型说明
RDateInteger报告期。
IDInteger数据面,基本ID
ResultTypeInteger用户自定义,返回类型
显示名 取值
增加值 0
增速(%) 1
返回Real实数
  • 范例

    //指定2017三季报,取万科A每股收益年度同比
    oV:=BackUpSystemParameters2();
    setsysparam(pn_stock(),'SZ000002');
    v:= LastYearTBGrowRatio (20170930, 9900000,1);
    return v;
    //结果:16.15
相关