天软金融分析.NET函数大全 > 金融函数 > 基本面 > 基本

StockReport    

简述
返回与报告期相关数据
定义
StockReport(StockID:String;InfoID:Integer;ReportDate:Integer); (返回类型和获取的数据有关)
参数
名称类型说明
StockIDString股票代码
InfoIDInteger基本面ID
ReportDateInteger)报告期
返回返回股票在某一报告期与报告期相关的InfoID数据
  • 范例


    return StockReport("SH600000",44002,20091231);
    //返回”SH600004”2009-12-31的货币资金
    //结果:1157096238.65  //返回实数类型


    return StockReport("SH600000",44146,20091231);

    //返回”SH600004”2009-12-31的会计准则

    //结果:新    //返回字符串类型
相关