天软金融分析.NET函数大全 > 金融函数 > 财务分析 > 常用

FinancialItemPSIn12Month2    

简述
最近12个月财务指标(每股),与系统参数(股票)相关。
定义
FinancialItemPSIn12Month2(RDate:Integer;InfoID:Integer;InfoID2:Integer):Real
参数
名称类型说明
RDateInteger整数。报告期
InfoIDInteger整数。基本面ID
InfoID2Integer整数。基本面ID2
返回Real实数。最近12个月财务指标(每股)。
  • 范例


    //SZ000728在20221231的最近12个月的基本每股收益(业绩快报)

        SetSysParam(pn_stock(),"SZ000728");

        SetSysParam(PN_Date(),20230327T);

        return FinancialItemPSIn12Month2(20221231,41006,46078);

        //结果:0.393762181055058

相关