@@ -2,6 +2,8 @@
|
||||
|
||||
## `fundGetAttributeValues(fundid, endt, attributetype)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金指定日期有效的的基金属性值数据。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -14,6 +16,8 @@
|
||||
|
||||
## `fundMasterCode()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金主代码,与系统参数(证券代码代码)相关。有主代码则取主代码,否则返回基金代码。
|
||||
|
||||
返回:string
|
||||
@@ -27,6 +31,8 @@ return FundMasterCode();
|
||||
|
||||
## `fundNetValueMethod()`
|
||||
|
||||
声明:function
|
||||
|
||||
返回指定指定基金净值增长率计算方法,与系统参数(代码、时间)相关。
|
||||
|
||||
返回:string
|
||||
@@ -41,6 +47,8 @@ return FundNetValueMethod();
|
||||
|
||||
## `fundsOperateFunds(funds, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日指定列表中还在运作的基金
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -52,6 +60,8 @@ return FundNetValueMethod();
|
||||
|
||||
## `isClassifyOfAFund(fund_id)`
|
||||
|
||||
声明:function
|
||||
|
||||
判断是否是分级A基金。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -70,6 +80,8 @@ return isClassifyOfAFund("SH502049");
|
||||
|
||||
## `isClassifyOfBFund(fund_id)`
|
||||
|
||||
声明:function
|
||||
|
||||
判断是否是分级B基金。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -88,6 +100,8 @@ return isClassifyOfBFund("SH502049");
|
||||
|
||||
## `isClassifyFund(fund_id)`
|
||||
|
||||
声明:function
|
||||
|
||||
判断是否是分级母基金。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -106,6 +120,8 @@ return fundCommision("SH500003");
|
||||
|
||||
## `fundGoMarketDate()`
|
||||
|
||||
声明:function
|
||||
|
||||
上市日,与系统证券pn_stock()相关。
|
||||
|
||||
返回:Int
|
||||
@@ -121,6 +137,8 @@ ReturnFundGoMarketDate();
|
||||
|
||||
## `fundIssueDate()`
|
||||
|
||||
声明:function
|
||||
|
||||
发行日,与系统股票pn_stock()相关。
|
||||
|
||||
返回:Int
|
||||
@@ -136,6 +154,8 @@ ReturnFundIssueDate();
|
||||
|
||||
## `isDefinedFundImStyle(fund_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
是否为指定的投资风格,与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -155,6 +175,8 @@ return isDefinedFundImStyle(0);
|
||||
|
||||
## `isExtFund(fund_id)`
|
||||
|
||||
声明:function
|
||||
|
||||
判断是否为基金,与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -173,6 +195,8 @@ return isExtFund('OF040001');
|
||||
|
||||
## `isFund(fund_id)`
|
||||
|
||||
声明:function
|
||||
|
||||
判断是否为基金
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -191,6 +215,8 @@ return isFund('SZ000002');
|
||||
|
||||
## `isFundGoMarket(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日是否已上市,与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -210,6 +236,8 @@ ReturnIsFundGoMarket(intToDate(20010501));
|
||||
|
||||
## `isOpenFund(fund_id)`
|
||||
|
||||
声明:function
|
||||
|
||||
判断是否为开放式基金
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -228,6 +256,8 @@ ReturnIsOpenFund('OF040001');
|
||||
|
||||
## `isCurrencyFund()`
|
||||
|
||||
声明:function
|
||||
|
||||
判断是否为货币型基金,与系统证券pn_stock()相关。
|
||||
|
||||
返回:boolean
|
||||
@@ -243,6 +273,8 @@ ReturnIsCurrencyFund();
|
||||
|
||||
## `nSharesOfFund(info_id, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金流通股本,InfoId必须为324,324是基金份额变动表的索引号。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -263,6 +295,8 @@ return nSharesOfFund(324,intToDate(20100503));
|
||||
|
||||
## `tSharesOfFund(info_id, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金总股本,InfoId必须为324,324是基金份额变动表的索引号。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -283,12 +317,16 @@ return tSharesOfFund (324,intToDate(20100503));
|
||||
|
||||
## `isregulapurchasescrollhold()`
|
||||
|
||||
声明:function
|
||||
|
||||
是否定期申购滚动持有,与系统参数(基金代码、日期)相关
|
||||
|
||||
返回:boolean
|
||||
|
||||
## `fundhsl2(rdate)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金换手率(非分级子基金),换手率=本期股票成交金额/((期初股票市值+期末股票市值)/2)\*100
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -299,54 +337,72 @@ return tSharesOfFund (324,intToDate(20100503));
|
||||
|
||||
## `fundoperationperiod()`
|
||||
|
||||
声明:function
|
||||
|
||||
运作期限(年),与系统参数(基金代码、日期)相关
|
||||
|
||||
返回:Integer
|
||||
|
||||
## `isminiholdperiod()`
|
||||
|
||||
声明:function
|
||||
|
||||
是否有最短持有期,与系统参数(基金代码、日期)相关
|
||||
|
||||
返回:boolean
|
||||
|
||||
## `isunrestrictedopening()`
|
||||
|
||||
声明:function
|
||||
|
||||
是否无受限开放,与系统参数(基金代码、日期)相关
|
||||
|
||||
返回:boolean
|
||||
|
||||
## `isscrollhold()`
|
||||
|
||||
声明:function
|
||||
|
||||
是否滚动持有,与系统参数(基金代码、日期)相关
|
||||
|
||||
返回:boolean
|
||||
|
||||
## `fundpurchaseredemptiontype()`
|
||||
|
||||
声明:function
|
||||
|
||||
指定基金申购赎回类型
|
||||
|
||||
返回:string
|
||||
|
||||
## `isregularredeem()`
|
||||
|
||||
声明:function
|
||||
|
||||
是否定期赎回,与系统参数(基金代码、日期)相关
|
||||
|
||||
返回:boolean
|
||||
|
||||
## `isregularopenfund()`
|
||||
|
||||
声明:function
|
||||
|
||||
是否定期开放基金,与系统参数(基金代码、日期)相关
|
||||
|
||||
返回:boolean
|
||||
|
||||
## `isclosedoperation()`
|
||||
|
||||
声明:function
|
||||
|
||||
是否封闭运作,与系统参数(基金代码、日期)相关
|
||||
|
||||
返回:boolean
|
||||
|
||||
## `fundsthemename(fundarr)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金列表主题
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -357,36 +413,48 @@ return tSharesOfFund (324,intToDate(20100503));
|
||||
|
||||
## `fundthemename()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金主题
|
||||
|
||||
返回:string
|
||||
|
||||
## `fundallthemename()`
|
||||
|
||||
声明:function
|
||||
|
||||
所有基金主题
|
||||
|
||||
返回:array
|
||||
|
||||
## `fundinvestmentstyles()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金投资风格种类
|
||||
|
||||
返回:array
|
||||
|
||||
## `fundallcompanylist()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金公司List,与系统参数无关。
|
||||
|
||||
返回:array
|
||||
|
||||
## `isotherrestrictedopening()`
|
||||
|
||||
声明:function
|
||||
|
||||
是否其他受限开放,与系统参数(基金代码、日期)相关
|
||||
|
||||
返回:boolean
|
||||
|
||||
## `isCurrencyFundByEndt(endt)`
|
||||
|
||||
声明:function
|
||||
|
||||
根据净值增长率计算方式判断是否为货币型基金 若以【每万份基金单位收益法】计算则认为是货币型
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -405,6 +473,8 @@ return isCurrencyFundByEndt(end_t); //结果:1
|
||||
|
||||
## `fundsFromManagerId(id)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金经理代码查基金。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -422,6 +492,8 @@ return fundsFromManagerId('7289');
|
||||
|
||||
## `fundsFromManagerName(name)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金经理名字查基金。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -439,6 +511,8 @@ return fundsFromManagerName('张惠');
|
||||
|
||||
## `fundOfDifferentFeesId(fund_id)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金因其收费模式不一致存在多个代码,本模型通过基金代码返回不同收费模式所有基金代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -457,6 +531,8 @@ return fundOfDifferentFeesId("OF000009");
|
||||
|
||||
## `isnotcontainswords(regexpr, parsetext)`
|
||||
|
||||
声明:function
|
||||
|
||||
不包含字串
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -468,6 +544,8 @@ return fundOfDifferentFeesId("OF000009");
|
||||
|
||||
## `iscontainswords(regexpr, parsetext)`
|
||||
|
||||
声明:function
|
||||
|
||||
包含字串
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -479,6 +557,8 @@ return fundOfDifferentFeesId("OF000009");
|
||||
|
||||
## `isthepurchaseredemptiontype(fundname, containstr, notcontainstr)`
|
||||
|
||||
声明:function
|
||||
|
||||
是否指定申购赎回类型,通过基金全称判断。与系统参数(基金代码、日期)相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -491,18 +571,24 @@ return fundOfDifferentFeesId("OF000009");
|
||||
|
||||
## `fundthemegetmatchstr()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金主题匹配串
|
||||
|
||||
返回:array
|
||||
|
||||
## `fundthemematchstring()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金主题匹配串
|
||||
|
||||
返回:array
|
||||
|
||||
## `fundgetthemename(fundname, matchstring)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金主题
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -514,6 +600,8 @@ return fundOfDifferentFeesId("OF000009");
|
||||
|
||||
## `fundName()`
|
||||
|
||||
声明:function
|
||||
|
||||
返回指定基金指定日名称,与系统参数(代码、时间)相关。
|
||||
|
||||
返回:String
|
||||
@@ -530,6 +618,8 @@ return fundName();
|
||||
|
||||
## `fundOperationFunds(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日所有运作中的基金列表
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -547,6 +637,8 @@ return fundOperationFunds(20200924T);
|
||||
|
||||
## `fundOperationFundsByTzfg(bk_name, end_t, industry_type, level)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日指定投资风格板块运作中的基金
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -567,6 +659,8 @@ return fundOperationFundsByTzfg("普通股票型",20200924T,0,2);
|
||||
|
||||
## `fundPrimaryMarketCode()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金一级市场代码,与系统参数(证券代码代码)相关。有一级市场代则取一级市场代,否则返回基金代码。
|
||||
|
||||
返回:String
|
||||
@@ -582,6 +676,8 @@ return fundPrimaryMarketCode();
|
||||
|
||||
## `fundSecondaryMarketCode()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金二级市场代码,与系统参数(证券代码代码)相关。有二级市场代码则取二级市场代码,否则返回基金代码。
|
||||
|
||||
返回:String
|
||||
@@ -597,6 +693,8 @@ return fundSecondaryMarketCode();
|
||||
|
||||
## `fundStyleName1()`
|
||||
|
||||
声明:function
|
||||
|
||||
返回指定指定基金一级风格名称,与系统参数(代码、时间)相关。
|
||||
|
||||
返回:String
|
||||
@@ -613,6 +711,8 @@ return fundStyleName1();
|
||||
|
||||
## `fundStyleName2()`
|
||||
|
||||
声明:function
|
||||
|
||||
返回指定指定基金二级风格名称,与系统参数(代码、时间)相关。
|
||||
|
||||
返回:String
|
||||
@@ -629,6 +729,8 @@ return fundStyleName2();
|
||||
|
||||
## `fundOperateFundsbyBkname(bk_name, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日指定板块中还在运作的基金
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
|
||||
## `fundEtfInfoCashForecasted(endt, endt_2)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日最小申购、赎回单位的预估现金部分,与系统参数(证券代码)相关。如果指定日有ETF申购赎回-基本信息,则返回最小申购、赎回单位的预估现金部分;如果指定日没有ETF申购赎回-基本信息,则返回0。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -20,6 +22,8 @@ return FundETFInfoCashForecasted(20230509T);
|
||||
|
||||
## `fundEtfInfoGetDataByEndT(endt)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日ETF申购赎回-基本信息,与系统参数(证券代码)相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -37,6 +41,8 @@ return FundETFInfoGetDataByEndT(20230509T);
|
||||
|
||||
## `fundEtfInfoLeastUnitCashDivid(endt, endt_2)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日最小申购、赎回单位现金红利,与系统参数(证券代码)相关。如果指定日有ETF申购赎回-基本信息,则返回最小申购、赎回单位现金红利;如果指定日没有ETF申购赎回-基本信息,则返回0。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -55,6 +61,8 @@ return FundETFInfoLeastUnitCashDivid(20230509T);
|
||||
|
||||
## `fundEtfInfoMarginRate(endt, endt_2)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日保证金申购保证金率(%),与系统参数(证券代码)相关。如果指定日有ETF申购赎回-基本信息,则返回保证金申购保证金率(%);如果指定日没有ETF申购赎回-基本信息,则返回0。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -73,6 +81,8 @@ return FundETFInfoMarginRate(20230509T);
|
||||
|
||||
## `getfundetfconstituent(fundid, enddate, t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取ETF历史指定日申购赎回-成分股表数据
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -95,6 +105,8 @@ else return array();//获取失败
|
||||
|
||||
## `fundEtfInfoLeastUnit(endt)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日最小申购、赎回单位,与系统参数(证券代码)相关。如果指定日有ETF申购赎回-基本信息,则返回最小申购、赎回单位;如果指定日没有ETF申购赎回-基本信息,则返回0。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -114,6 +126,8 @@ return fundEtfInfoLeastUnit(20230509T);
|
||||
|
||||
## `fundEtfInfoNetVlue(endt, endt_2)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日最小申购、赎回单位净值,与系统参数(证券代码)相关。如果指定日有ETF申购赎回-基本信息,则返回最小申购、赎回单位净值;如果指定日没有ETF申购赎回-基本信息,则返回0。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -134,6 +148,8 @@ return fundEtfInfoNetVlue(20230509T);
|
||||
|
||||
## `fundEtfInfoUpperRatio(endt, endt_2)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日现金替代比例上限(%),与系统参数(证券代码)相关。如果指定日有ETF申购赎回-基本信息,则返回现金替代比例上限(%);如果指定日没有ETF申购赎回-基本信息,则返回0。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -154,6 +170,8 @@ return fundEtfInfoUpperRatio(20230509T);
|
||||
|
||||
## `fundEtfInfoIsOpenPurcharse(endt, endt_2)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日是否开放申购,与系统参数(证券代码)相关。如果指定日有ETF申购赎回-基本信息,则返回是否开放申购;如果指定日没有ETF申购赎回-基本信息,则返回0。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -174,6 +192,8 @@ return fundEtfInfoIsOpenPurcharse(20230509T);
|
||||
|
||||
## `fundEtfInfoIsOpenMarginPurchase(endt, endt_2)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日是否开放保证金申购,与系统参数(证券代码)相关。如果指定日有ETF申购赎回-基本信息,则返回是否开放保证金申购;如果指定日没有ETF申购赎回-基本信息,则返回0。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -194,6 +214,8 @@ return fundEtfInfoIsOpenMarginPurchase(20230509T);
|
||||
|
||||
## `fundEtfInfoIsOpenRedem(endt, endt_2)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日是否开放赎回,与系统参数(证券代码)相关。如果指定日有ETF申购赎回-基本信息,则返回是否开放赎回;如果指定日没有ETF申购赎回-基本信息,则返回0。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -214,6 +236,8 @@ return fundEtfInfoIsOpenRedem(20230509T);
|
||||
|
||||
## `fundEtfInfoInvestorSubscribeLimit(endt, endt_2)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日保证金申购单一投资者当日申购总量限制份数,与系统参数(证券代码)相关。如果指定日有ETF申购赎回-基本信息,则返回保证金申购单一投资者当日申购总量限制份数;如果指定日没有ETF申购赎回-基本信息,则返回0。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -234,6 +258,8 @@ return fundEtfInfoInvestorSubscribeLimit(20230509T);
|
||||
|
||||
## `fundEtfInfoLeastUnitCash(endt, endt_2)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日最小申购、赎回单位的现金余额,与系统参数(证券代码)相关。如果指定日有ETF申购赎回-基本信息,则返回最小申购、赎回单位的现金余额;如果指定日没有ETF申购赎回-基本信息,则返回0。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -254,6 +280,8 @@ return fundEtfInfoLeastUnitCash(20230509T);
|
||||
|
||||
## `fundEtfInfoSecuritySubscribeLimit(endt, endt_2)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日保证金申购单个代办证券公司当日申购总量限制,与系统参数(证券代码)相关。如果指定日有ETF申购赎回-基本信息,则返回保证金申购单个代办证券公司当日申购总量限制;如果指定日没有ETF申购赎回-基本信息,则返回0。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -274,12 +302,16 @@ return fundEtfInfoSecuritySubscribeLimit(20230509T);
|
||||
|
||||
## `fund_ETFPurchaseRedemptionInfoID()`
|
||||
|
||||
声明:function
|
||||
|
||||
ETF申购赎回-基本信息
|
||||
|
||||
返回:bool
|
||||
|
||||
## `fund_ETFPurchaseRedemptionStocks()`
|
||||
|
||||
声明:function
|
||||
|
||||
ETF申购赎回-成分股
|
||||
|
||||
返回:bool
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
|
||||
## `fundCalmarRatio(beg_t, end_t, data_select, cycle)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金Calmar。与系统股票pn_stock()、当前时间pn_date()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -22,6 +24,8 @@ Return FundCalmarRatio(20160101T,20180903T,0,cy_day());
|
||||
|
||||
## `fundOmega(index_id, beg_t, end_t, data_select, cycle)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金Omega比率。与系统股票pn_stock()、当前时间pn_date()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -36,6 +40,8 @@ Return FundCalmarRatio(20160101T,20180903T,0,cy_day());
|
||||
|
||||
## `fundRachev(beg_t, end_t, rf, data_select, cycle)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金Rachev比率。与系统股票pn_stock()、当前时间pn_date()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -57,6 +63,8 @@ Return FundRachev(20160101T,20180903T,3,0,cy_day());
|
||||
|
||||
## `fundSortinoRatio(beg_t, end_t, rf, data_select, annual, cycle)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金索丁诺比率。与系统股票pn_stock()、当前时间pn_date()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -81,6 +89,8 @@ return fundSortinoRatio(20160101T,20180903T,3,0,1,cy_day());
|
||||
|
||||
## `fundAppraisalRatio(index_id, beg_t, end_t, data_select)`
|
||||
|
||||
声明:function
|
||||
|
||||
估价比率(估价比率=α系数/残差),也即为信息比率,与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -103,6 +113,8 @@ ReturnFundAppraisalRatio("SH000001",intToDate(20031010),intToDate(20121022),0);
|
||||
|
||||
## `fundJensenMeasure(index_id, beg_t, end_t, rf, data_select)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回Jense指数(与系统股票pn_stock()相关)
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -126,6 +138,8 @@ return fundJensenMeasure("SH000001",intToDate(20030314),intToDate(20121019),1.98
|
||||
|
||||
## `fundSharpMeasure(beg_t, end_t, rf, data_select)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回Sharp指数(与系统证券pn_stock()相关)
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -148,6 +162,8 @@ ReturnFundSharpMeasure(intToDate(20030314),intToDate(20121019),2,0);
|
||||
|
||||
## `fundTreynorMeasure(index_id, beg_t, end_t, rf, data_select)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回Treynor指数(与系统股票pn_stock()相关)
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -171,6 +187,8 @@ return fundTreynorMeasure("SH000001",intToDate(20030314),intToDate(20121019),1.9
|
||||
|
||||
## `fundMeasure(index_id, beg_t, end_t, rf, data_select)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回基金评估常用的指标。只支持日线与周线,若当前基金净值是按周公布的,计算指标包括以下等:(Rp,Rm,Alpha,Beta,Std,SharpMeasure,JensenMeasure,TreynorMeasure,AppraisalRatio,Corr,…)
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -200,6 +218,8 @@ return fundMeasure("SH000001",intToDate(20210121),intToDate(20210521),14,0);
|
||||
|
||||
## `userDefineIndex(stock_arr, beg_t, end_t, rf, use_rf)`
|
||||
|
||||
声明:function
|
||||
|
||||
用户自定义指数的收益率序列,与系统周期pn_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -228,6 +248,8 @@ intToDate(20121010),intToDate(20121019),2,false);
|
||||
|
||||
## `zsRfRatio(rf)`
|
||||
|
||||
声明:function
|
||||
|
||||
无风险收益率(折算),与系统周期有关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
|
||||
@@ -2,12 +2,16 @@
|
||||
|
||||
## `fundManagerByEndt()`
|
||||
|
||||
声明:function
|
||||
|
||||
在任基金经理,与系统参数(基金代码、日期)相关
|
||||
|
||||
返回:array
|
||||
|
||||
## `fundManagerDataByEndt(fundid, endt)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日在任基金经理人信息
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -19,6 +23,8 @@
|
||||
|
||||
## `fundmanagerid2Funds(managerid)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金经理ID查询所有管理过的基金,与时间无关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -29,6 +35,8 @@
|
||||
|
||||
## `fundmanagername2Id(managername)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金经理名称查询基金经理ID
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -39,6 +47,8 @@
|
||||
|
||||
## `fundmanagerid2Fundsendt(managerid, endt)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日基金经理ID查询管理的基金代码列表
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -57,6 +67,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerSaleShares_Year(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期本年以来赎回份额,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -67,6 +79,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerSaleSharesOfRate_Year(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期本年以来赎回份额占基金份额(%),系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -77,6 +91,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerTotalValueChange_Year(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期本年以来市值变动,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -87,6 +103,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerTotalValueChange_LYear(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期最近1年市值变动,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -97,6 +115,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerSaleSharesOfRate_LYear(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期最近1年赎回份额占基金份额(%),系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -107,6 +127,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerTotalSharesChangeOfRate2_LYear(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期最近1年份额变动占基金管理人份额(%),系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -117,6 +139,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerTotalSharesChange_LYear(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期最近1年份额变动,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -127,6 +151,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerBuyValue_LYear(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期最近1年申购市值,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -137,6 +163,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerTotalSharesChangeOfRate2_Year(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期本年以来份额变动占基金管理人份额(%),系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -147,6 +175,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerTotalSharesChangeOfRate_Year(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期本年以来份额变动占基金份额(%),系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -157,6 +187,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerSaleShares_LYear(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期最近1年赎回份额,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -167,6 +199,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerBuyShares_LYear(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期最近1年申购份额,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -177,6 +211,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerBuyShares_Year(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期本年以来申购份额,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -187,6 +223,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerTotalSharesChange_Year(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期本年以来份额变动,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -197,6 +235,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerSaleValue_Year(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期本年以来赎回市值,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -207,6 +247,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerTotalValueChange_QJ(r_date2, r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期区间指定基金的市值变动,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -218,6 +260,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerTradeAmount_Year(r_date, t_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期本年以来指定基金管理人交易金额,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -229,6 +273,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerTradeAveragePrice_LYear(r_date, t_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期最近1年指定基金管理人交易均价,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -240,6 +286,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerTradeAveragePrice_Year(r_date, t_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期本年以来指定基金管理人交易均价,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -251,6 +299,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerTradeSharesOfRate_Year(r_date, t_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期本年以来指定基金管理人交易份额占基金总份额(%),系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -262,6 +312,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerTradeAveragePrice_QJ(r_date2, r_date, t_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期区间指定基金管理人交易均价,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -274,6 +326,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManagerTradeShares_QJ(r_date2, r_date, t_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期区间指定基金管理人交易份额,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -286,36 +340,48 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManager_IdField()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金经理-代码。根据数据库提供商返回对应的值
|
||||
|
||||
返回:string
|
||||
|
||||
## `FundManager_BirthDateField()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金经理-出生年月。根据数据库提供商返回对应的值
|
||||
|
||||
返回:string
|
||||
|
||||
## `FundManager_EndDateField()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金经理-离职日期。根据数据库提供商返回对应的值
|
||||
|
||||
返回:string
|
||||
|
||||
## `FundManager_ResumeField()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金经理-简历。根据数据库提供商返回对应的值
|
||||
|
||||
返回:string
|
||||
|
||||
## `FundManager_NameField()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金经理-姓名。根据数据库提供商返回对应的值
|
||||
|
||||
返回:string
|
||||
|
||||
## `FundManager_js_gpgmjz(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
全市场股票规模价值风格识别
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -326,6 +392,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManager_js_hyjqd(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
申万一级行业景气度
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -336,6 +404,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManager_CYJL(manager_id, r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金经理从业经历
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -347,6 +417,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManager_GLGM(manager_id, r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金经理管理规模
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -358,6 +430,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManager_JJGSSL(manager_id, r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金公司实力
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -369,6 +443,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `FundManager_TZZGZD(manager_id, r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
投资者关注度
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -380,6 +456,8 @@ return fundmanagerid2Fundsendt("3067",20201009T);
|
||||
|
||||
## `indexOfFundManagers(fund_managers, f_mtype, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日指定类型基金经理指数
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -402,6 +480,8 @@ return indexOfFundManagers(fund_managers,f_mtype,end_t);
|
||||
|
||||
## `FundManager_GetStockHoldings(manager_id, f_mtype, r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金经理指定报告期持股明细,其中一、三季报为模拟持仓数据,中报、年报为实际持仓数据
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -414,6 +494,8 @@ return indexOfFundManagers(fund_managers,f_mtype,end_t);
|
||||
|
||||
## `FundManager_pj_cwfg(fund_managers, r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
根据基金经理列表计算指定报告期持仓风格评价
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -425,6 +507,8 @@ return indexOfFundManagers(fund_managers,f_mtype,end_t);
|
||||
|
||||
## `FundManager_RiskStyle(manager_id, r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金经理风险风格因子计算模型
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -436,12 +520,16 @@ return indexOfFundManagers(fund_managers,f_mtype,end_t);
|
||||
|
||||
## `Fund_Manager()`
|
||||
|
||||
声明:function
|
||||
|
||||
返回指定基金相同管理人列表数据,与系统参数(证券代码)相关。
|
||||
|
||||
返回:array
|
||||
|
||||
## `fund_ManagerShareChange(show_number, report_date_show_order)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金管理人份额变动
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -453,6 +541,8 @@ return indexOfFundManagers(fund_managers,f_mtype,end_t);
|
||||
|
||||
## `fund_ManagerTradeDetail(show_number, show_type, report_date_show_order)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金管理人交易明细
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -465,6 +555,8 @@ return indexOfFundManagers(fund_managers,f_mtype,end_t);
|
||||
|
||||
## `fundmanagercrossholdstock_qk(fund_admin_name, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金管理公司交叉持股情况。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -476,6 +568,8 @@ return indexOfFundManagers(fund_managers,f_mtype,end_t);
|
||||
|
||||
## `FundManagerCrossHoldStock_Call(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
所有基金管理公司交叉持股情况。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
|
||||
## `fundAlpha(index_id, beg_t, end_t, data_select)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回基金的α系数,与系统证券、周期有关,周期只能用日线、周线。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -25,6 +27,8 @@ return FundAlpha('SH000300',begt,endt,0);
|
||||
|
||||
## `fundAverageYtm2(begt, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回一段时间的指定周期的收益率(算术平均)(%),与系统证券pn_stock()相关。 注意,该函数只能设置周期为日线或者周线,其他周期则返回0。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -45,6 +49,8 @@ return FundAverageYTM2(begt,endt);
|
||||
|
||||
## `fundAverageYtm3(beg_t, end_t, rf)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回基金的区间风险收益率(%),与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -67,6 +73,8 @@ return FundAverageYTM3(begt,endt,2.25);
|
||||
|
||||
## `fundBeta(index_id, beg_t, end_t, data_select)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回基金的β系数,与系统证券pn_stock()相关,与系统证券、周期有关,周期只能用日线、周线
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -90,6 +98,8 @@ return FundBeta('SH000300',begt,endt,0);
|
||||
|
||||
## `fundCorr(index_id, beg_t, end_t, data_select)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回某基金与IndexId的相关系数,与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -112,6 +122,8 @@ return FundCorr('SH000001',begt,endt,0);
|
||||
|
||||
## `fundMaxDrawDown(beg_t, end_t, data_select)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金最大回撤(%)。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -131,6 +143,8 @@ Return FundMaxDrawDown(20160101T,20180903T,0);
|
||||
|
||||
## `fundMinRecoveryPeriod(beg_t, end_t, data_select, cycle)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金净值突破前值最长时间。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -151,6 +165,8 @@ Return FundMinRecoveryPeriod(20160101T,20180903T,0,cy_day());
|
||||
|
||||
## `fundNavReturn(beg_t, end_t, data_select, annual)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金组合收益(%)。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -171,6 +187,8 @@ Return FundNAVReturn(20160101T,20180927T,0,1);
|
||||
|
||||
## `fundNavReturnDtd(end_t, data_select, annual)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金本日收益(%)。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -190,6 +208,8 @@ Return FundNAVReturnDTD(20180907T,0,1);
|
||||
|
||||
## `fundNavReturnItd(end_t, data_select, annual)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金成立以来收益(%)。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -209,6 +229,8 @@ Return FundNAVReturnITD(20181008T,0,1);
|
||||
|
||||
## `fundNavReturnWtd(end_t, data_select, annual)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金本周收益(%),返回组合周区间收益率(%)。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -228,6 +250,8 @@ Return FundNAVReturnWTD(20180907T,0,1);
|
||||
|
||||
## `fundPna(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回基金指定日的市净率,不复权,与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -246,6 +270,8 @@ return FundPNA(endt);
|
||||
|
||||
## `fundRSquared(index_id, beg_t, end_t, data_select, cycle)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金R2。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -260,6 +286,8 @@ return FundPNA(endt);
|
||||
|
||||
## `fundStdDev(beg_t, end_t, data_select)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回基金区间收益率的标准差,与系统证券pn_stock()相关,与系统证券、周期有关,周期只能用日线、周线。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -282,6 +310,8 @@ return FundStdDev(begt,endt,0) ;
|
||||
|
||||
## `fundTraingReturn1M(end_t, data_select, annual)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金最近1个月收益(%)。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -301,6 +331,8 @@ Return FundTraingReturn1M(20180928T,0,1);
|
||||
|
||||
## `fundTraingReturn1Y(end_t, data_select, annual)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金最近1年收益(%)。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -320,6 +352,8 @@ Return FundTraingReturn1Y(20180928T,0,1);
|
||||
|
||||
## `fundTraingReturn6M(end_t, data_select, annual)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金最近6个月收益(%)。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -339,6 +373,8 @@ Return FundTraingReturn6M(20180928T,0,1);
|
||||
|
||||
## `fundTurnOver(begt, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回基金的交易周转率(%),不复权,与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -359,6 +395,8 @@ return FundTurnOver(begt,endt);
|
||||
|
||||
## `fundVaR(beg_t, end_t, data_select, cycle)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金VaR(%)。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -379,6 +417,8 @@ Return FundVaR(20160101T,20180927T,0,cy_day());
|
||||
|
||||
## `fundZjRatio(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回基金指定日的折价率(%),不复权,与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -397,6 +437,8 @@ return FundZjRatio(endt);
|
||||
|
||||
## `fundZjRatio3()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金的最新折价率(%) 与系统证券pn_stock()及系统时间pn_date()相关。只适用于封闭基金。
|
||||
|
||||
返回:float
|
||||
@@ -411,6 +453,8 @@ return FundZjRatio3();
|
||||
|
||||
## `fundExcessReturn(index_id, beg_t, end_t, data_select, annual)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金超额收益(%)。与系统股票pn_stock()、当前时间pn_date()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -434,6 +478,8 @@ return fundExcessReturn("SH000300",20160101T,20180903T,0,0);
|
||||
|
||||
## `fundMarginalRisk(index_id, beg_t, end_t, data_select, cycle)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金边际风险。与系统股票pn_stock()、当前时间pn_date()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -456,6 +502,8 @@ return fundMarginalRisk("SH000018",20160101T,20180903T,0,1);
|
||||
|
||||
## `fundNavReturnYtd(end_t, data_select, annual)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金本年收益(%),返回组合累计收益率(%)。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -477,6 +525,8 @@ return fundNavReturnYtd(20180903T,0,1);
|
||||
|
||||
## `fundTe(index_id, beg_t, end_t, rf, data_select, annual, cycle)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金跟踪误差(%)。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -501,6 +551,8 @@ return fundTe("SH000018",20160101T,20180903T,3,0,1,cy_day());
|
||||
|
||||
## `FundNetAsset(end_t, return_field)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金净值,取数据基金.净值(328)中基金净值。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -512,6 +564,8 @@ return fundTe("SH000018",20160101T,20180903T,3,0,1,cy_day());
|
||||
|
||||
## `Fund_NetAsset(end_t, return_field)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金净值,取数据基金.净值(328)中基金净值。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -532,6 +586,8 @@ return fundNetAsset(20180822T,'单位净值');
|
||||
|
||||
## `fundTraingReturn2Y(end_t, data_select, annual)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金最近2年收益(%)。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -553,6 +609,8 @@ return fundTraingReturn2Y(20180928T,0,1);
|
||||
|
||||
## `fundTraingReturn3Y(end_t, data_select, annual)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金最近3年收益(%)。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -574,6 +632,8 @@ return fundTraingReturn3Y(20180928T,0,1);
|
||||
|
||||
## `fundSemiDeviation(beg_t, end_t, data_select, annual, cycle)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金下方标准差(%)。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -597,6 +657,8 @@ return fundSemiDeviation(20160101T,20180927T,0,1,cy_day());
|
||||
|
||||
## `fundNavReturnQtd(end_t, data_select, annual)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金本季收益(%)。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -618,6 +680,8 @@ return fundNavReturnQtd(20180630T,0,1);
|
||||
|
||||
## `fundNavReturnMtd(end_t, data_select, annual)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金本月收益(%)。与系统股票pn_stock()、当前时间pn_date(),周期cy_cycle()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
|
||||
## `fundAdjustNav1(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取T-1调整后单位净值(预估净值)。与系统股票pn_stock()相关。 注: T日如果是拆分基准日,那么基金公司将会公布拆分折算后的净值,其与T-1日的量纲不同,此处将对T-1日的净值进行调整至经过拆分折算调整后的净值。 一般用于分级基金
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -19,6 +21,8 @@ return FundAdjustNAV1(20180903T);
|
||||
|
||||
## `fundAdjustNav2(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取T-1调整前单位净值(预估折溢价)。与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -36,6 +40,8 @@ return FundAdjustNAV2(20180822T);
|
||||
|
||||
## `fundBenchmarkReturn4(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
基准预估涨幅(%)。与系统股票pn_stock()、当前时间pn_date()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -53,6 +59,8 @@ return FundBenchmarkReturn4(20180903T);
|
||||
|
||||
## `fundCalculatedNav4(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的母基金预估净值。与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -70,6 +78,8 @@ return FundCalculatedNAV4(20180903T);
|
||||
|
||||
## `fundCalculatedNavAvgError(begt, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的母基金预估净值相对误差的均值(%),即区间预估与真实净值之差的均值。与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -88,6 +98,8 @@ return FundCalculatedNAVAvgError(20160101T,20180903T);
|
||||
|
||||
## `fundHsl(begt, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
分级子基金换手率(%)。与系统股票pn_stock()相关。 注:仅支持分级基金
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -106,6 +118,8 @@ return FundHSL(20180101T,20180903T);
|
||||
|
||||
## `fundMarketShare(endt, t)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金T和T-1流通份额(万),与系统参数(证券代码)相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -124,6 +138,8 @@ return FundMarketShare(20231215T,0);
|
||||
|
||||
## `fundShareIncrease(endt)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金份额变动数目,数据从基金.份额变动表(324)中取。与系统股票pn_stock()、相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -141,6 +157,8 @@ Return FundShareIncrease(20170703T);
|
||||
|
||||
## `fundTrackingError(begt, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的母基金跟踪误差(%),与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -159,6 +177,8 @@ return FundTrackingError(20160101T,20180903T);
|
||||
|
||||
## `FundTrueNAV_All(end_t, fund_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的T日基金真实净值(用于计算折溢价)。与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -170,6 +190,8 @@ return FundTrackingError(20160101T,20180903T);
|
||||
|
||||
## `fundVirtualTrackingError(begt, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的母基金预估净值相对误差的标准差(%),即区间预估与真实净值之差的均值。与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -188,6 +210,8 @@ return FundVirtualTrackingError(20160101T,20180903T);
|
||||
|
||||
## `getAllStructuredFunds()`
|
||||
|
||||
声明:function
|
||||
|
||||
获取所有分级子基金可在交易所交易的母基金,与当前时间pn_date()相关。
|
||||
|
||||
返回:Array
|
||||
@@ -201,6 +225,8 @@ return getAllStructuredFunds();
|
||||
|
||||
## `fundHslOfA4(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的分级A类换手率(%),与系统股票pn_stock()、当前时间pn_date()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -220,6 +246,8 @@ return fundHslOfA4(20180903T);
|
||||
|
||||
## `fundDiscountRatioOfA4(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的分级A类指定日折溢价率(%),与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -239,6 +267,8 @@ return fundDiscountRatioOfA4(20180903T);
|
||||
|
||||
## `fundShareIncreaseofA(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的分级A类份额变动数目,数据取表基金.份额变动表(324),与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -258,6 +288,8 @@ return fundShareIncreaseofA(20180903T);
|
||||
|
||||
## `fundVirtualDiscountRatioOfB4(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的分级B类预估折价率(%),与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -277,6 +309,8 @@ return fundVirtualDiscountRatioOfB4(20180903T);
|
||||
|
||||
## `fundNavLeverage4(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的分级B类净值杠杆,与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -296,6 +330,8 @@ return fundNavLeverage4(20180903T);
|
||||
|
||||
## `fundHslOfB4(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的分级B类换手率(%),与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -315,6 +351,8 @@ return fundHslOfB4(20180903T);
|
||||
|
||||
## `fundShareLeverage()`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的份额杠杆,与系统股票pn_stock()相关。
|
||||
|
||||
返回:Integer
|
||||
@@ -330,6 +368,8 @@ return fundShareLeverage();
|
||||
|
||||
## `fundShareIncreaseofB(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的分级B类份额增长,数据取表基金.份额变动表(324),与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -349,6 +389,8 @@ return fundShareIncreaseofB(20180903T);
|
||||
|
||||
## `fundCalculatedNavOfB4(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的分级B类预估净值,与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -368,6 +410,8 @@ return fundCalculatedNavOfB4(20180903T);
|
||||
|
||||
## `fundPriceLeverage4(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的分级B类价格杠杆,与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -387,6 +431,8 @@ return fundPriceLeverage4(20180903T);
|
||||
|
||||
## `fundCalculatedNavError4(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的母基金预估净值相对误差(%),与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -406,6 +452,8 @@ return fundCalculatedNavError4(20180903T);
|
||||
|
||||
## `fundVirtualDiscountRatio4(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的母基金预估折价率(%),即区间预估与真实净值之差的均值。与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -425,6 +473,8 @@ return fundVirtualDiscountRatio4(20180903T);
|
||||
|
||||
## `fundVirtualPrice4(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的母基金虚拟价格。与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -444,6 +494,8 @@ return fundVirtualPrice4(20180903T);
|
||||
|
||||
## `fundVirtualNawzf4(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金预估净值涨幅(%)。与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -463,6 +515,8 @@ return fundVirtualNawzf4(20180903T);
|
||||
|
||||
## `fundShareIncreaseOfRatio(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取分级A和B类份额增长率(%)。与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -482,6 +536,8 @@ return fundShareIncreaseOfRatio(20180903T);
|
||||
|
||||
## `getDepositRate(hbid, int_day)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日指定银行存款利率。与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
|
||||
## `FundChangeInFairValueOfFinancialAsset_Bond_Rate(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期指定基金债券投资收益占公允价值变动收益(%)=债券投资收益/abs(公允价值变动收益)\*100%,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -12,6 +14,8 @@
|
||||
|
||||
## `FundChangeInFairValueOfFinancialAsset_Rate(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期指定基金交易性金融资产占公允价值变动收益(%)=交易性金融资产/abs(公允价值变动收益)\*100%,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -22,6 +26,8 @@
|
||||
|
||||
## `FundChangeInFairValueOfFinancialAsset_Stock_Rate(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期指定基金股票投资收益占公允价值变动收益(%)=股票投资收益/abs(公允价值变动收益)\*100%,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -32,6 +38,8 @@
|
||||
|
||||
## `fundPfAmount(beg_t, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取基金的区间分红总额(万),与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -52,6 +60,8 @@ return fundPfAmount (intToDate(20080201),intToDate(20100305));
|
||||
|
||||
## `fundPfAmount2()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金上市以来分红总额(万),与系统证券pn_stock()和系统时间pn_date()相关。
|
||||
|
||||
返回:Real
|
||||
@@ -68,6 +78,8 @@ return fundPfAmount2();
|
||||
|
||||
## `fundPfAmountIi(beg_t, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金区间分红(元/份),与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -88,6 +100,8 @@ return fundPfAmountIi(intToDate(20050201),intToDate(20120305));
|
||||
|
||||
## `fundPfAmountIi2()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金上市以来分红(元/份),与系统证券pn_stock()和系统时间pn_date()相关
|
||||
|
||||
返回:Real
|
||||
@@ -104,6 +118,8 @@ return fundPfAmountIi2 ();
|
||||
|
||||
## `fundPfInfo(beg_t, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金区间分红情况,与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -124,6 +140,8 @@ return fundPfInfo(intToDate(20050201),intToDate(20120305));
|
||||
|
||||
## `fundPfInfo2()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金上市以来分红情况,与系统证券pn_stock()和系统时间pn_date()相关
|
||||
|
||||
返回:Array
|
||||
@@ -140,6 +158,8 @@ return fundPfInfo2();
|
||||
|
||||
## `fundPfPercent(beg_t, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金区间分红(复合比例/份),与系统股票pn_stock()相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -160,6 +180,8 @@ return fundPfPercent(intToDate(20050201),intToDate(20120305));
|
||||
|
||||
## `fundCashAndBonusInfo(beg_t, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金区间分红和拆分情况,与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -180,6 +202,8 @@ return fundCashAndBonusInfo(intToDate(20050201),intToDate(20120305));
|
||||
|
||||
## `fundPfNumberIi(beg_t, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金区间分红次数,与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -200,6 +224,8 @@ return fundPfNumberIi(intToDate(20050201),intToDate(20120305));
|
||||
|
||||
## `fundDistributionInfo(beg_t, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
区间扩募情况,与系统参数(证券代码)相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -219,6 +245,8 @@ return fundDistributionInfo(20010101T,20100101T);
|
||||
|
||||
## `fundChangeInFairValueData(fund_id, r_date, c_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取指定基金指定日交易性金融资产或衍生工具占公允价值变动收益的比值(%)
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
|
||||
## `fundIciValue(rdate, name)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定行业配置相关数据,与系统参数(基金)相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -20,6 +22,8 @@ return FundICIValue(20221231,'制造业');
|
||||
|
||||
## `fundIcNoN(rdate, top_n, field)`
|
||||
|
||||
声明:function
|
||||
|
||||
第N名行业配置相关数据,与系统参数(基金)相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -39,6 +43,8 @@ return FundICNoN(20221231,3,'市值');
|
||||
|
||||
## `fundIcSumN(rdate, top_n, field)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名行业配置相关数据,与系统参数(基金)相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -58,6 +64,8 @@ return FundICSumN(20221231,3,'市值');
|
||||
|
||||
## `fundindustrynamelv1(extype)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金一级行业
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -68,6 +76,8 @@ return FundICSumN(20221231,3,'市值');
|
||||
|
||||
## `fundsindustrynamelv(fundarr, extype, lv)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金列表行业
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -80,6 +90,8 @@ return FundICSumN(20221231,3,'市值');
|
||||
|
||||
## `fundindustrynamelv3(extype)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金三级行业
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -90,6 +102,8 @@ return FundICSumN(20221231,3,'市值');
|
||||
|
||||
## `fundindustrynamelv2(extype)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金二级行业
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -100,6 +114,8 @@ return FundICSumN(20221231,3,'市值');
|
||||
|
||||
## `fundindustrynamelv4(extype)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金四级行业
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -110,6 +126,8 @@ return FundICSumN(20221231,3,'市值');
|
||||
|
||||
## `fundindustryname(industrytype, extype)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金行业
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -121,6 +139,8 @@ return FundICSumN(20221231,3,'市值');
|
||||
|
||||
## `fundindustrygetmatchstr(industrytype, extype)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金行业匹配串
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -132,12 +152,16 @@ return FundICSumN(20221231,3,'市值');
|
||||
|
||||
## `fundindustrymatchstring()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金行业匹配串
|
||||
|
||||
返回:string
|
||||
|
||||
## `fundIcCentralization(report_date, to_no)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金指定报告期的前N名行业集中度(%)
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -159,6 +183,8 @@ return fundIcCentralization(r_date,3);
|
||||
|
||||
## `fundIcMarketValue(report_date, industry_name)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回基金指定报告期的指定行业投资市值,与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -180,6 +206,8 @@ return fundIcMarketValue(r_date,'金融、保险业');
|
||||
|
||||
## `fundIcMarketValue2GrowRatio(r_date, r_date2, to_no)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回基金的前N名行业市值变比(%),与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -203,6 +231,8 @@ return fundIcMarketValue2GrowRatio(r_date1,r_date2,10);
|
||||
|
||||
## `fundicindustrypercent2(rdate, name)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定行业市值占总值比(%),与系统参数证券(基金)相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -222,6 +252,8 @@ return fundicindustrypercent2(20191231,"金融业"); //结果:5.57438513631856
|
||||
|
||||
## `fundicnonname(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
第N名行业名称,与系统参数证券(基金)相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -241,6 +273,8 @@ return fundicnonname(20191231,1); //结果:制造业
|
||||
|
||||
## `fundinfoindustryname1()`
|
||||
|
||||
声明:function
|
||||
|
||||
返回银河基金分类的一级行业名称
|
||||
|
||||
返回:String
|
||||
@@ -256,6 +290,8 @@ return fundinfoindustryname1(); //返回:银河混合型
|
||||
|
||||
## `fundinfoindustryname2()`
|
||||
|
||||
声明:function
|
||||
|
||||
返回指定基金的银河二级行业名称
|
||||
|
||||
返回:String
|
||||
@@ -271,6 +307,8 @@ return fundinfoindustryname2(); //返回:银河偏股型
|
||||
|
||||
## `fundyhindustryid1()`
|
||||
|
||||
声明:function
|
||||
|
||||
返回指定基金银河一级行业编码
|
||||
|
||||
返回:String
|
||||
@@ -286,6 +324,8 @@ return fundyhindustryid1(); //返回:YHFL020000
|
||||
|
||||
## `fundyhindustryid2()`
|
||||
|
||||
声明:function
|
||||
|
||||
返回指定基金银河二级行业编码
|
||||
|
||||
返回:String
|
||||
@@ -301,6 +341,8 @@ return fundyhindustryid2(); //返回:YHFL020100
|
||||
|
||||
## `fundYhIndustryArr(industry_type, level_n, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日指定级别基金分类列表,默认返回银河分类的一级分类列表
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -320,6 +362,8 @@ return fundYhIndustryArr('YHFL',1,20210302T);
|
||||
|
||||
## `fundIndustryInfoLvN(fundid, end_t, level, industry_type, vtype)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回指定基金指定日期指定级别的类型名称,默认取银河基金分类的一级基金类型编码。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -342,6 +386,8 @@ return fundIndustryInfoLvN('OF000001',20210301T,1,'YHFL',1);
|
||||
|
||||
## `fundGetIndustrydata(fundid, endt, level, industry_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金指定日期有效的基金分类数据。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -363,42 +409,56 @@ return fundGetIndustrydata('OF000001',20210301T,1,'YHFL');
|
||||
|
||||
## `IE_FundBondIndustryByType()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金.债券投资组合(按债券品种分类)
|
||||
|
||||
返回:array
|
||||
|
||||
## `IE_FundBondIndustryByMaturity()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金.债券投资组合(按偿还期限分类)
|
||||
|
||||
返回:array
|
||||
|
||||
## `Fund_SCIndustryNameField()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金持股-行业名称。根据数据库提供商返回对应的值
|
||||
|
||||
返回:string
|
||||
|
||||
## `Fund_SCB2IndustryNameField()`
|
||||
|
||||
声明:function
|
||||
|
||||
累计买入超净值2%-行业名称。根据数据库提供商返回对应的值
|
||||
|
||||
返回:string
|
||||
|
||||
## `Fund_SCS2IndustryNameField()`
|
||||
|
||||
声明:function
|
||||
|
||||
累计卖出超净值2%-行业名称。根据数据库提供商返回对应的值
|
||||
|
||||
返回:string
|
||||
|
||||
## `Fund_BSIndustryNameField()`
|
||||
|
||||
声明:function
|
||||
|
||||
债券配置-债券类型。根据数据库提供商返回对应的值
|
||||
|
||||
返回:string
|
||||
|
||||
## `PortfolioBackTesting_Quantity_IndustryComposite(end_t, t_gp)`
|
||||
|
||||
声明:function
|
||||
|
||||
策略验证-数量类组合-t日行业配置,由tGP数据表中按行业统计个各行业的市值和排名
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -410,6 +470,8 @@ return fundGetIndustrydata('OF000001',20210301T,1,'YHFL');
|
||||
|
||||
## `Fund_HD_IndustryRotationSkill(fund_id, beg_t, end_t, style_type, date_type, hold_type, typ)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金行业轮动能力因子计算模型
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -426,6 +488,8 @@ return fundGetIndustrydata('OF000001',20210301T,1,'YHFL');
|
||||
|
||||
## `Fund_IndustryCentralization(show_number, report_date_show_order)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回指定基金最近N个报告期的行业集中度数据,与系统参数(证券代码)相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -437,6 +501,8 @@ return fundGetIndustrydata('OF000001',20210301T,1,'YHFL');
|
||||
|
||||
## `Fund_SWIndustryComposite(show_number, unit_type, report_date_show_order)`
|
||||
|
||||
声明:function
|
||||
|
||||
申万行业配置
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -449,6 +515,8 @@ return fundGetIndustrydata('OF000001',20210301T,1,'YHFL');
|
||||
|
||||
## `Funds_IndustryCentralization(bk_name, r_date, sort_by, sort_order, return_number)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回指定板块指定报告期基金行业集中度数据。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -463,6 +531,8 @@ return fundGetIndustrydata('OF000001',20210301T,1,'YHFL');
|
||||
|
||||
## `FundIndustryCompositeChange_Call(fund_arr, r_date, r_date2, sort_by, sort_order, return_number)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金行业配置及变化。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -478,6 +548,8 @@ return fundGetIndustrydata('OF000001',20210301T,1,'YHFL');
|
||||
|
||||
## `Funds_SWIndustryComposite(bk_name, end_t, show_number, sort_type, unit_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
申万行业配置
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -492,6 +564,8 @@ return fundGetIndustrydata('OF000001',20210301T,1,'YHFL');
|
||||
|
||||
## `FundBlock_IndustryComposite(r_date, r_date2)`
|
||||
|
||||
声明:function
|
||||
|
||||
返回报告期基金管理公司在指定行业的行业配置数据。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -503,6 +577,8 @@ return fundGetIndustrydata('OF000001',20210301T,1,'YHFL');
|
||||
|
||||
## `FundBlock_IndustryCentralization(bk_names, end_t, show_number, show_order, unit_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
行业集中度
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
|
||||
## `fundManagerBuySharesOfRate(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期申购份额占基金份额(%)=指定报告期申购份额/指定报告期基金总份额\*100%,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -19,6 +21,8 @@ return FundManagerBuySharesOfRate(20190630);
|
||||
|
||||
## `FundManagerBuySharesOfRate_LYear(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期最近1年申购份额占基金份额(%),系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -29,6 +33,8 @@ return FundManagerBuySharesOfRate(20190630);
|
||||
|
||||
## `FundManagerBuySharesOfRate_QJ(r_date2, r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期区间指定基金的申购份额占基金份额(%)=申购总份额/区间内最后报告期基金总份额\*100%,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -40,6 +46,8 @@ return FundManagerBuySharesOfRate(20190630);
|
||||
|
||||
## `FundManagerBuySharesOfRate_Year(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期本年以来申购份额占基金份额(%),系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -50,6 +58,8 @@ return FundManagerBuySharesOfRate(20190630);
|
||||
|
||||
## `FundManagerBuyShares_QJ(r_date2, r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期区间指定基金的申购份额总和,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -61,6 +71,8 @@ return FundManagerBuySharesOfRate(20190630);
|
||||
|
||||
## `fundManagerBuyValue(rdate)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期的申购市值=指定报告期申购份额\*指定报告期基金净值,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -78,6 +90,8 @@ return FundManagerBuyValue(20200630);
|
||||
|
||||
## `FundManagerBuyValue_QJ(r_date2, r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期区间指定基金的申购市值,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -89,6 +103,8 @@ return FundManagerBuyValue(20200630);
|
||||
|
||||
## `FundManagerBuyValue_Year(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期本年以来申购市值,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -99,6 +115,8 @@ return FundManagerBuyValue(20200630);
|
||||
|
||||
## `FundManagerSaleSharesOfRate_QJ(r_date2, r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期区间指定基金的赎回份额占基金份额(%)=赎回总份额/区间内最后报告期基金总份额\*100%,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -110,6 +128,8 @@ return FundManagerBuyValue(20200630);
|
||||
|
||||
## `FundManagerSaleShares_QJ(r_date2, r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期区间指定基金的赎回份额总和,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -121,6 +141,8 @@ return FundManagerBuyValue(20200630);
|
||||
|
||||
## `fundManagerSaleValue(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期的赎回市值=指定报告期赎回份额\*指定报告期基金净值,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -138,6 +160,8 @@ return FundManagerSaleValue(20190630);
|
||||
|
||||
## `FundManagerSaleValue_LYear(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期最近1年赎回市值,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -148,6 +172,8 @@ return FundManagerSaleValue(20190630);
|
||||
|
||||
## `FundManagerSaleValue_QJ(r_date2, r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期区间指定基金的赎回市值,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -159,6 +185,8 @@ return FundManagerSaleValue(20190630);
|
||||
|
||||
## `fundManagerSharesChangeData(fund_id, r_date, dtype, ctype)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期指定基金的基金管理人份额变动市值、比率等指标
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -172,6 +200,8 @@ return FundManagerSaleValue(20190630);
|
||||
|
||||
## `fundManagerTotalSharesChangeOfRate(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期份额变动占基金份额(%)=指定报告期份额变动/指定报告期基金总份额\*100%,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -189,6 +219,8 @@ return FundManagerTotalSharesChangeOfRate(20190630);
|
||||
|
||||
## `FundManagerTotalSharesChangeOfRate2_QJ(r_date2, r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期区间指定基金的份额变动占基金管理人份额(%)=份额变动/期初基金管理人总份额\*100%,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -200,6 +232,8 @@ return FundManagerTotalSharesChangeOfRate(20190630);
|
||||
|
||||
## `FundManagerTotalSharesChangeOfRate_LYear(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期最近1年份额变动占基金份额(%),系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -210,6 +244,8 @@ return FundManagerTotalSharesChangeOfRate(20190630);
|
||||
|
||||
## `FundManagerTotalSharesChangeOfRate_QJ(r_date2, r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期区间指定基金的份额变动占基金份额(%)=份额变动/区间内最后报告期基金总份额\*100%,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -221,6 +257,8 @@ return FundManagerTotalSharesChangeOfRate(20190630);
|
||||
|
||||
## `FundManagerTotalSharesChange_QJ(r_date2, r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期区间指定基金的份额变动,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -232,6 +270,8 @@ return FundManagerTotalSharesChangeOfRate(20190630);
|
||||
|
||||
## `fundManagerTotalValueChange(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期的份额变动市值=指定报告期份额变动\*指定报告期基金净值,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -249,6 +289,8 @@ return FundManagerTotalValueChange(20190630);
|
||||
|
||||
## `fundManagerTotalValue(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期的期末市值=指定报告期期末份额\*指定报告期基金净值,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -268,6 +310,8 @@ return fundManagerTotalValue(20190630);
|
||||
|
||||
## `fundManagerSaleSharesOfRate(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期赎回份额占基金份额(%)=指定报告期赎回份额/指定报告期基金总份额\*100%,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -287,6 +331,8 @@ return fundManagerSaleSharesOfRate(20190630);
|
||||
|
||||
## `fundManagerTotalSharesOfRate(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期期末份额占基金份额(%)=指定报告期期末份额/指定报告期基金总份额\*100%,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -306,6 +352,8 @@ return fundManagerTotalSharesOfRate(20190630);
|
||||
|
||||
## `fundManagerTotalSharesChangeOfRate2(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定基金指定报告期份额变动占基金管理人份额(%)=指定报告期份额变动/指定报告期期初基金总份额\*100%,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -325,6 +373,8 @@ return fundManagerTotalSharesChangeOfRate2(20190630);
|
||||
|
||||
## `fundManagerSharesChangeDataQj(fund_id, r_date2, r_date, dtype, ctype)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得区间内指定基金的基金管理人份额变动数量、金额、市值、比率等指标
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
|
||||
## `fundGetManagerTradeSharesData(fund_id, r_date2, r_date, t_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取指定基金指定区间基金管理人交易明细数据 当RDate2=RDate时可取指定日数据
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -15,6 +17,8 @@
|
||||
|
||||
## `FundManagerTradeAmount_LYear(r_date, t_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期最近1年指定基金管理人交易金额,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -26,6 +30,8 @@
|
||||
|
||||
## `FundManagerTradeAmount_QJ(r_date2, r_date, t_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期区间指定基金管理人交易金额,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -38,6 +44,8 @@
|
||||
|
||||
## `FundManagerTradeAmount_Report(r_date, t_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期指定基金管理人交易金额,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -49,6 +57,8 @@
|
||||
|
||||
## `FundManagerTradeAveragePrice_Report(r_date, t_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期指定基金管理人交易均价,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -60,6 +70,8 @@
|
||||
|
||||
## `FundManagerTradeShares_LYear(r_date, t_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期最近1年指定基金管理人交易份额,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -71,6 +83,8 @@
|
||||
|
||||
## `FundManagerTradeSharesOfRate_LYear(r_date, t_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期最近1年指定基金管理人交易份额占基金总份额(%),系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -82,6 +96,8 @@
|
||||
|
||||
## `FundManagerTradeSharesOfRate_QJ(r_date2, r_date, t_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期区间指定基金管理人交易份额占基金总份额(%),系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -94,6 +110,8 @@
|
||||
|
||||
## `FundManagerTradeSharesOfRate_Report(r_date, t_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期指定基金管理人交易份额占基金总份额(%),系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -105,6 +123,8 @@
|
||||
|
||||
## `FundManagerTradeShares_Report(r_date, t_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期指定基金管理人交易份额,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -116,6 +136,8 @@
|
||||
|
||||
## `FundManagerTradeShares_Year(r_date, t_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期本年以来指定基金管理人交易份额,系统参数:证券代码
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -127,6 +149,8 @@
|
||||
|
||||
## `fundManagerTradeSharesDataQj(fund_id, r_date2, r_date, t_type, c_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
获得指定报告期区间指定基金管理人交易份额、金额、均价、占比等指标
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -2,6 +2,8 @@
|
||||
|
||||
## `calculateComplexRightQj(nawarr, forefhcf, rateday)`
|
||||
|
||||
声明:function
|
||||
|
||||
复杂复权单位净值序列,与系统参数无关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -14,6 +16,8 @@
|
||||
|
||||
## `fund7DaysAnnualRate(fundid, endt)`
|
||||
|
||||
声明:function
|
||||
|
||||
7日折算的年化收益率(%) 返回指定基金指定日的7日折算的年化收益率(%),非货币型返回0
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -25,6 +29,8 @@
|
||||
|
||||
## `fundIpov()`
|
||||
|
||||
声明:function
|
||||
|
||||
时点净值(ETF/LOF),与系统证券pn_stock()、系统时间pn_date()相关
|
||||
|
||||
返回:float
|
||||
@@ -39,6 +45,8 @@ Return FundIPOV();
|
||||
|
||||
## `fundMaxMinNaw(beg_t, end_t, _type, return_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
取区间内单位(累计)净值的最大或最小值,与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -59,6 +67,8 @@ ReturnFundMaxMinNAW(inttodate(20040930),inttodate(20121018),0,0);
|
||||
|
||||
## `fundNawByRateBegtEndt(begt, endt)`
|
||||
|
||||
声明:function
|
||||
|
||||
区间复权单位净值,与系统参数基金代码、复权方式、复权基准日相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -79,6 +89,8 @@ return FundNAWByRateBegtEndt(20210501T,20210514T);
|
||||
|
||||
## `fundNawByRateEndT(endt)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日复权单位净值,与系统参数基金代码、复权方式、复权基准日相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -89,6 +101,8 @@ return FundNAWByRateBegtEndt(20210501T,20210514T);
|
||||
|
||||
## `fundNawlAccumulativeNetAsset(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金指定日累计净值,数据取自基金.净值(328)。与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -106,6 +120,8 @@ Return FundNAWLAccumulativeNetAsset(20180822T);
|
||||
|
||||
## `fundNawlj()`
|
||||
|
||||
声明:function
|
||||
|
||||
最新累计净值,与系统证券pn_stock()和系统时间pn_date()相关。
|
||||
|
||||
返回:float
|
||||
@@ -119,6 +135,8 @@ ReturnFundNAWLJ();
|
||||
|
||||
## `fundNawlNetAsset(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金截止日单位净值,数据取自基金.净值(328)。与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -136,6 +154,8 @@ Return FundNAWLNetAsset(20180822T);
|
||||
|
||||
## `fundNawZf3()`
|
||||
|
||||
声明:function
|
||||
|
||||
最新日收益率(%),与系统证券pn_stock()相关。 对于非货币基金 若无分红 今日净值增长率=(今日净值-昨日净值)/昨日净值 若有分红 今日净值增长率=(今日净值-(昨日净值-分红)/拆分)/((昨日净值-分红)/拆分)。 对于货币基金 今日净值增长率=区间内的复合收益率。
|
||||
|
||||
返回:float
|
||||
@@ -152,6 +172,8 @@ Return FundNAWZf3();
|
||||
|
||||
## `fundNetAssetperUnitInReportDate(r_date)`
|
||||
|
||||
声明:function
|
||||
|
||||
单位净值(报告期),与系统参数(证券代码)相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -169,6 +191,8 @@ return FundNetAssetperUnitInReportDate(20211231);
|
||||
|
||||
## `fundZjRatio4()`
|
||||
|
||||
声明:function
|
||||
|
||||
ETF时点折价率,与系统参数(证券代码,时间,周期)相关。
|
||||
|
||||
返回:float
|
||||
@@ -183,6 +207,8 @@ return FundZjRatio4(); //结果:-0.14
|
||||
|
||||
## `fundMaxMinNaw2(end_t, _type, return_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
上市以来至EndT这段时间内单位(累计)净值的最大或最小值,与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -204,6 +230,8 @@ ReturnFundMaxMinNAW2(intToDate(20121018),0,0);
|
||||
|
||||
## `fundNawdw()`
|
||||
|
||||
声明:function
|
||||
|
||||
最新单位净值,与系统证券pn_stock()和系统时间pn_date()相关。
|
||||
|
||||
返回:Real
|
||||
@@ -220,6 +248,8 @@ return fundNawdw();
|
||||
|
||||
## `fundNawlInfo(beg_t, end_t, _type)`
|
||||
|
||||
声明:function
|
||||
|
||||
取区间内每天的净值(详情),与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -241,6 +271,8 @@ ReturnFundNAWLInfo(intToDate(20121010),intToDate(20121019),2);
|
||||
|
||||
## `fundNawlInfo2(end_t, _type)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日净值数据,与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -261,6 +293,8 @@ ReturnFundNAWLInfo2 (intToDate(20121019),2);
|
||||
|
||||
## `fundNawZf(beg_t, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
区间净值增长率(%),与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -281,6 +315,8 @@ ReturnFundNAWZf(intToDate(20121010),intToDate(20121019));
|
||||
|
||||
## `fundNawlInfoFromBegT(beg_t, end_t, _type)`
|
||||
|
||||
声明:function
|
||||
|
||||
区间净值详情(以开始日为基准日计算累计净值),与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -303,6 +339,8 @@ fundNawlInfoFromBegT(intToDate(20121010),intToDate(20121019),1);
|
||||
|
||||
## `fundNawZf4(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日收益率(%),与系统证券pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -322,6 +360,8 @@ ReturnFundNAWZf4(intToDate(20121019));
|
||||
|
||||
## `FundNAWZf_fh(beg_t, end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
区间复合收益率(%) , 与系统股票pn_stock()相关。 对于非货币基金 若区间无分红 区间净值增长率=(截止日净值-开始日昨净值)/开始日昨净值。 若区间有分红 区间净值增长率=(1+拆分前的净值增长率)\*(1+分红拆分日的净值增长率)\*(1+分红拆分日后到截止日之间的净值增长率)-1。 对于货币基金 区间净值增长率=区间内的复合收益率。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -333,6 +373,8 @@ ReturnFundNAWZf4(intToDate(20121019));
|
||||
|
||||
## `fundIpoc()`
|
||||
|
||||
声明:function
|
||||
|
||||
时点收盘(ETF/LOF),与系统证券pn_stock()与系统时间pn_date()相关
|
||||
|
||||
返回:Real
|
||||
@@ -349,6 +391,8 @@ return fundIpoc();
|
||||
|
||||
## `fundNawmwfjjdwsy(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金截止日每万份基金单位收益,数据取自基金.净值(328)。与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -368,6 +412,8 @@ return fundNawmwfjjdwsy(20180822T);
|
||||
|
||||
## `fundNawzjqrsyzsdnsyl(end_t)`
|
||||
|
||||
声明:function
|
||||
|
||||
基金截止日最近七日收益折算的年收益率(%),数据取自基金.净值(328)。与系统股票pn_stock()相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -387,6 +433,8 @@ return fundNawzjqrsyzsdnsyl (20180822T);
|
||||
|
||||
## `fundAdjustNaw(end_t, _type)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定日基金净值,与系统证券PN_Stock()相关,根据分红拆分计算调整前/后净值
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -406,6 +454,8 @@ return fundAdjustNaw(endt,1); //0.9952
|
||||
|
||||
## `calculateRatioRightQj(nawarr, forefhcf, rateday)`
|
||||
|
||||
声明:function
|
||||
|
||||
比例复权单位净值序列,与系统参数无关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -418,24 +468,32 @@ return fundAdjustNaw(endt,1); //0.9952
|
||||
|
||||
## `Fund_NAWLNetAssetField()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金净值-单位净值。根据数据库提供商返回对应的值
|
||||
|
||||
返回:string
|
||||
|
||||
## `Fund_NAWLSumValueField()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金净值-净值总额。根据数据库提供商返回对应的值
|
||||
|
||||
返回:string
|
||||
|
||||
## `Fund_NAWZJQRSYZSDNSYLField()`
|
||||
|
||||
声明:function
|
||||
|
||||
基金净值-最近七日收益折算的年收益率(%)。根据数据库提供商返回对应的值
|
||||
|
||||
返回:string
|
||||
|
||||
## `FundNAW(_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
净值,与系统证券,时间相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -446,6 +504,8 @@ return fundAdjustNaw(endt,1); //0.9952
|
||||
|
||||
## `Fund_NAW(_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
净值,与系统证券,时间相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -2,6 +2,8 @@
|
||||
|
||||
## `fundtpbrokerbondamountrank(rdate, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商债券成交额排名,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -20,6 +22,8 @@ return FundTPBrokerBondAmountRank(20181231,"光大证券"); //结果:2
|
||||
|
||||
## `fundTpBrokerInterBankAmountGrow(rdate, rdate2, b_name)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商银行间债券成交额变动,与系统参数(股票)相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -39,6 +43,8 @@ return FundTPBrokerInterBankAmountGrow(20191231,20181231,"申万宏源");
|
||||
|
||||
## `fundtpsumnbondamountpercentgrow(rdate, rdate2, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商债券成交额占债券成交总额比变动(%),与系统参数(基金代码)相关 TopN=-1时,则取所有的是所有的数据。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -58,6 +64,8 @@ return FundTPSumNBondAmountPercentGrow(20191231,20181231,2);//结果:-26.26
|
||||
|
||||
## `fundtpsumncommissiongrow(rdate, rdate2, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商佣金变动,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -77,6 +85,8 @@ return FundTPSumNCommissionGrow(20191231,20181231,2);//结果:1442409.18
|
||||
|
||||
## `fundtpsumncommissionpercent(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商佣金占佣金总额比(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -95,6 +105,8 @@ return FundTPSumNCommissionPercent(20200630,2); //结果:58.01
|
||||
|
||||
## `fundtpsumninterbankamount(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商银行间债券成交额,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -113,6 +125,8 @@ return FundTPSumNInterBankAmount(20181231,1); //结果:4085764.8
|
||||
|
||||
## `fundtpsumninterbankamountgrow(rdate, rdate2, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商银行间债券成交额变动,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -132,6 +146,8 @@ return FundTPSumNInterBankAmountGrow(20191231,20181231,1);//结果:-4085764.8
|
||||
|
||||
## `fundtpsumninterbankamountpercent(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商银行间债券成交额占银行间成交总额比(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -150,6 +166,8 @@ return FundTPSumNInterBankAmountPercent(20181231,1); //结果:1
|
||||
|
||||
## `fundtpsumninterbankamountpercentgrow(rdate, rdate2, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商银行间债券成交额占银行间成交总额比变动(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -169,6 +187,8 @@ return FundTPSumNInterBankAmountPercentGrow(20191231,20181231,2);//结果:-1
|
||||
|
||||
## `fundtpbrokerbondamount(rdate, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商债券成交额,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -188,6 +208,8 @@ return fundtpbrokerbondamount(20181231,"光大证券"); //结果:12693715.39
|
||||
|
||||
## `fundtpbrokerbondamountgrow(rdate, rdate2, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商债券成交额变动,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -208,6 +230,8 @@ return fundtpbrokerbondamountgrow(20191231,20181231,"光大证券");//结果:-
|
||||
|
||||
## `fundtpbrokerbondamountpercent(rdate, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商债券成交额占债券成交总额比(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -227,6 +251,8 @@ return fundtpbrokerbondamountpercent(20181231,"光大证券"); //结果:8.25
|
||||
|
||||
## `fundtpbrokerbondamountpercentgrow(rdate, rdate2, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商债券成交额占债券成交总额比变动(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -247,6 +273,8 @@ return fundtpbrokerbondamountpercentgrow(20191231,20181231,"光大证券");//结
|
||||
|
||||
## `fundtpbrokerbondamountrankgrow(rdate, rdate2, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商债券成交额排名变动,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -267,6 +295,8 @@ return fundtpbrokerbondamountrankgrow(20191231,20181231,"光大证券");//结果
|
||||
|
||||
## `fundtpbrokercommission(rdate, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商佣金,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -286,6 +316,8 @@ return fundtpbrokercommission(20181231,"光大证券"); //结果:2679213
|
||||
|
||||
## `fundtpbrokercommissiongrow(rdate, rdate2, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商佣金变动,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -306,6 +338,8 @@ return fundtpbrokercommissiongrow(20191231,20181231,"光大证券");//结果:-
|
||||
|
||||
## `fundtpbrokercommissionpercent(rdate, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商佣金占佣金总额比(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -325,6 +359,8 @@ return fundtpbrokercommissionpercent(20191231,"光大证券"); //结果:4.26
|
||||
|
||||
## `fundtpbrokercommissionpercentgrow(rdate, rdate2, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商佣金占佣金总额比变动(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -345,6 +381,8 @@ return fundtpbrokercommissionpercentgrow(20191231,20181231,"光大证券");//结
|
||||
|
||||
## `fundtpbrokerinterbankamount(rdate, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商银行间债券成交额,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -364,6 +402,8 @@ return fundtpbrokerinterbankamount(20181231,"申万宏源"); //结果:4085764
|
||||
|
||||
## `fundtpbrokerinterbankamountpercent(rdate, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商银行间债券成交额占银行间成交总额比(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -383,6 +423,8 @@ return fundtpbrokerinterbankamountpercent(20181231,"申万宏源"); //结果:
|
||||
|
||||
## `fundtpbrokerinterbankamountpercentgrow(rdate, rdate2, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商银行间债券成交额占银行间成交总额比变动(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -403,6 +445,8 @@ return fundtpbrokerinterbankamountpercentgrow(20191231,20181231,"申万宏源");
|
||||
|
||||
## `fundtpbrokerinterbankamountrank(rdate, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商银行间债券成交额排名,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -422,6 +466,8 @@ return fundtpbrokerinterbankamountrank(20181231,"申万宏源"); //结果:1
|
||||
|
||||
## `fundtpbrokerinterbankamountrankgrow(rdate, rdate2, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商银行间债券成交额排名变动,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -443,6 +489,8 @@ return fundtpbrokerinterbankamountrankgrow(20191231,20181231,"申万宏源");
|
||||
|
||||
## `fundtpbrokerrepoamount(rdate, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商回购成交额,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -462,6 +510,8 @@ return fundtpbrokerrepoamount(20181231,"国泰君安"); //结果:505610030000
|
||||
|
||||
## `fundtpbrokerrepoamountgrow(rdate, rdate2, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商回购成交额变动,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -483,6 +533,8 @@ return fundtpbrokerrepoamountgrow(20191231,20181231,"国泰君安");
|
||||
|
||||
## `fundtpbrokerrepoamountpercent(rdate, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商回购成交额占回购成交总额比(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -502,6 +554,8 @@ return fundtpbrokerrepoamountpercent(20191231,"国泰君安"); //结果:99.92
|
||||
|
||||
## `fundtpbrokerrepoamountpercentgrow(rdate, rdate2, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商回购成交额占回购成交总额比变动(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -522,6 +576,8 @@ return fundtpbrokerrepoamountpercentgrow(20191231,20181231,"国泰君安");//结
|
||||
|
||||
## `fundtpbrokerrepoamountrank(rdate, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商回购成交额排名,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -541,6 +597,8 @@ return fundtpbrokerrepoamountrank(20181231,"光大证券"); //结果:4
|
||||
|
||||
## `fundtpbrokerrepoamountrankgrow(rdate, rdate2, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商回购成交额排名变动,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -561,6 +619,8 @@ return fundtpbrokerrepoamountrankgrow(20191231,20181231,"光大证券");//结果
|
||||
|
||||
## `fundtpbrokerstockamount(rdate, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商股票成交额,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -580,6 +640,8 @@ return fundtpbrokerstockamount(20181231,"光大证券"); //结果:3663646679.
|
||||
|
||||
## `fundtpbrokerstockamountgrow(rdate, rdate2, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商股票成交额变动,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -600,6 +662,8 @@ return fundtpbrokerstockamountgrow(20191231,20181231,"光大证券"); //结果
|
||||
|
||||
## `fundtpbrokerstockamountpercent(rdate, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商股票成交额占股票成交总额比(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -619,6 +683,8 @@ return fundtpbrokerstockamountpercent(20181231,"光大证券"); //结果:14.7
|
||||
|
||||
## `fundtpbrokerstockamountpercentgrow(rdate, rdate2, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商股票成交额占股票成交总额比变动(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -639,6 +705,8 @@ return fundtpbrokerstockamountpercentgrow(20191231,20181231,"光大证券");//
|
||||
|
||||
## `fundtpbrokerstockamountrank(rdate, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商股票成交额排名,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -658,6 +726,8 @@ return fundtpbrokerstockamountrank(20181231,"光大证券"); //结果:4
|
||||
|
||||
## `fundtpbrokerstockamountrankgrow(rdate, rdate2, bname)`
|
||||
|
||||
声明:function
|
||||
|
||||
指定券商股票成交额排名变动,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -678,6 +748,8 @@ return fundtpbrokerstockamountrankgrow(20191231,20181231,"光大证券");//结
|
||||
|
||||
## `fundtpnonbondamount(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
第N名券商债券成交额,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -697,6 +769,8 @@ return fundtpnonbondamount(20191231,2); //结果:45067508.6
|
||||
|
||||
## `fundtpnonbondamountname(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
第N名债券成交额券商名称,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -716,6 +790,8 @@ return fundtpnonbondamountname(20181231,2); //结果:光大证券
|
||||
|
||||
## `fundtpnonbondamountpercent(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
第N名券商债券成交额占债券成交总额比(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -735,6 +811,8 @@ return fundtpnonbondamountpercent(20181231,2); //结果:8.25
|
||||
|
||||
## `fundtpnoncommission(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
第N名券商佣金,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -754,6 +832,8 @@ return fundtpnoncommission(20200630,2); //结果:1644771
|
||||
|
||||
## `fundtpnoncommissionpercent(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
第N名券商佣金占佣金总额比(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -773,6 +853,8 @@ return fundtpnoncommissionpercent(20200630,2); //结果:11.3
|
||||
|
||||
## `fundtpnoninterbankamount(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
第N名券商银行间债券成交额,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -792,6 +874,8 @@ return fundtpnoninterbankamount(20181231,1); //结果:4085764.8
|
||||
|
||||
## `fundtpnoninterbankamountpercent(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
第N名券商银行间债券成交额占银行间成交总额比(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -811,6 +895,8 @@ return fundtpnoninterbankamountpercent(20181231,1); //结果:1
|
||||
|
||||
## `fundtpnonrepoamount(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
第N名券商回购成交额,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -830,6 +916,8 @@ return fundtpnonrepoamount(20181231,2); //结果:60400000
|
||||
|
||||
## `fundtpnonrepoamountname(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
第N名回购成交额券商名称,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -849,6 +937,8 @@ return fundtpnonrepoamountname(20181231,2); //结果:华创证券
|
||||
|
||||
## `fundtpnonrepoamountpercent(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
第N名券商回购成交额占回购成交总额比(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -868,6 +958,8 @@ return fundtpnonrepoamountpercent(20181231,2); //结果:11.18
|
||||
|
||||
## `fundtpnonstockamount(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
第N名券商股票成交额,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -887,6 +979,8 @@ return fundtpnonstockamount(20191231,2); //结果:3008002112.11
|
||||
|
||||
## `fundtpnonstockamountname(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
第N名股票成交额券商名称,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -906,6 +1000,8 @@ return fundtpnonstockamountname(20181231,2); //结果:中信证券
|
||||
|
||||
## `fundtpnonstockamountpercent(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
第N名券商股票成交额占股票成交总额比(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -925,6 +1021,8 @@ return fundtpnonstockamountpercent(20181231,2); //结果:17.92
|
||||
|
||||
## `fundtpsumnbondamount(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商债券成交额,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -944,6 +1042,8 @@ return fundtpsumnbondamount(20191231,2); //结果:100317070.9
|
||||
|
||||
## `fundtpsumnbondamountgrow(rdate, rdate2, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商债券成交额变动,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -964,6 +1064,8 @@ return fundtpsumnbondamountgrow(20191231,20181231,2);//结果:-53605243.66
|
||||
|
||||
## `fundtpsumnbondamountpercent(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商债券成交额占债券成交总额比(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -983,6 +1085,8 @@ return fundtpsumnbondamountpercent(20191231,2); //结果:73.74
|
||||
|
||||
## `fundtpsumncommission(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商佣金,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -1002,6 +1106,8 @@ return fundtpsumncommission(20200630,2); //结果:8442489.51
|
||||
|
||||
## `fundtpsumncommissionpercentgrow(rdate, rdate2, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商佣金占佣金总额比变动(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -1023,6 +1129,8 @@ return fundtpsumncommissionpercentgrow(20191231,20181231,2);
|
||||
|
||||
## `fundtpsumnrepoamount(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商回购成交额,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -1042,6 +1150,8 @@ return fundtpsumnrepoamount(20191231,2); //结果:12000000
|
||||
|
||||
## `fundtpsumnrepoamountgrow(rdate, rdate2, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商回购成交额变动,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -1062,6 +1172,8 @@ return fundtpsumnrepoamountgrow(20191231,20181231,2);//结果:-498400000
|
||||
|
||||
## `fundtpsumnrepoamountpercent(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商回购成交额占回购成交总额比(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -1081,6 +1193,8 @@ return fundtpsumnrepoamountpercent(20181231,2); //结果: 94.45
|
||||
|
||||
## `fundtpsumnrepoamountpercentgrow(rdate, rdate2, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商回购成交额占回购成交总额比变动(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -1101,6 +1215,8 @@ return fundtpsumnrepoamountpercentgrow(20191231,20181231,2);//结果:5.55
|
||||
|
||||
## `fundtpsumnstockamount(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商股票成交额(元),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -1120,6 +1236,8 @@ return fundtpsumnstockamount(20200630,2); //结果:11408565519.97
|
||||
|
||||
## `fundtpsumnstockamountgrow(rdate, rdate2, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商股票成交额变动,前N名券商股票成交额同比变动,与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -1140,6 +1258,8 @@ return fundtpsumnstockamountgrow(20191231,20181231,2);//结果:1609282529.37
|
||||
|
||||
## `fundtpsumnstockamountpercent(rdate, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商股票成交额占股票成交总额比(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -1159,6 +1279,8 @@ return fundtpsumnstockamountpercent(20200630,2); //结果:57.18
|
||||
|
||||
## `fundtpsumnstockamountpercentgrow(rdate, rdate2, topn)`
|
||||
|
||||
声明:function
|
||||
|
||||
前N名券商股票成交额占股票成交总额比变动(%),与系统参数(基金代码)相关
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -1179,6 +1301,8 @@ return fundtpsumnstockamountpercentgrow(20191231,20181231,2);//结果:1.41
|
||||
|
||||
## `fundTpNoNInterBankAmountName(rdate, top_n)`
|
||||
|
||||
声明:function
|
||||
|
||||
第N名银行间债券成交额券商名称,与系统参数(证券代码)相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -1199,6 +1323,8 @@ return fundTpNoNInterBankAmountName(20181231,1);
|
||||
|
||||
## `fundTpGetDateDonField(r_date, bname, value_type, value_field, fund_arr)`
|
||||
|
||||
声明:function
|
||||
|
||||
获取交易席位情况指定券商数据,与系统参数(基金代码)相关。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -1221,6 +1347,8 @@ return fundTpGetDateDonField(20211231,'安信证券',1,'股票成交量');
|
||||
|
||||
## `fundTpNoNbkRatioValueOnField(t, top_n, field)`
|
||||
|
||||
声明:function
|
||||
|
||||
交易席位情况-第N名比值,用于板块(比值数字指标)。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -1241,6 +1369,8 @@ return fundTpNoNbkRatioValueOnField(t,1,'股票成交量');
|
||||
|
||||
## `fundTpSumNValueOnField(t, top_n, field)`
|
||||
|
||||
声明:function
|
||||
|
||||
交易席位情况-前N名和,用于个券,板块(非比值数字指标)。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -1261,6 +1391,8 @@ return fundTpSumNValueOnField(t,1,'股票成交量');
|
||||
|
||||
## `fundTpSumNbkRatioValueOnField(t, top_n, field)`
|
||||
|
||||
声明:function
|
||||
|
||||
交易席位情况-前N名和比值,用于板块(比值数字指标)。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -1281,6 +1413,8 @@ return fundTpSumNbkRatioValueOnField(t,1,'股票成交量');
|
||||
|
||||
## `fundTpNoNValueOnField(t, top_n, field)`
|
||||
|
||||
声明:function
|
||||
|
||||
交易席位情况-第N名,用于个券,板块(非比值数字指标)。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
@@ -1301,6 +1435,8 @@ return fundTpNoNValueOnField(t,1,'股票成交量');
|
||||
|
||||
## `fundTpnValueOnField(fund_arr, rdate, top_n, field, field_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
交易席位情况-前N第N指标框架。
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
|
||||
Reference in New Issue
Block a user