StockIssueCMAmount
简述
时间段内,股票发行筹资总额(万)
StockIssueCMAmount (BegT:TDateTime;EndT:TDateTime):Real
| 名称 | 类型 | 说明 |
|---|
| BegT | TDateTime | 实数,开始日期; |
| EndT | TDateTime | 实数,截止日期; |
| 返回 | Real | 实数,募资总额 |
//返回"SH600005"区间股票发行筹资总额(万)
ov:=BackUpSystemParameters();
SetSysParam(pn_stock(),"SH600005");
BegT:=Inttodate(20110101);
EndT:=Inttodate(20111231);
R:= StockIssueCMAmount (BegT,EndT);
RestoreSystemParameters(ov);
Return R;
//结果:0