知识库 > 金融建模 > 公用函数 > 扩展函数 > .Net扩展函数 > 行情 > 指定日

StockSellVol4    

简述
主卖盘量
定义
StockSellVol4(EndT: TDateTime):Real;
参数

EndT:日期类型,截止日期

返回:实数
  • 范例:

    //返回SZ000002(万科A)在20110901的主卖盘量
    SetSysParam(PN_Stock(),'SZ000002');
    EndT:=inttodate(20110901);
    return StockSellVol4(EndT); 
    //结果:8800766

相关