sqlUtilities.dos 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. module fundit::sqlUtilities
  2. /*
  3. * MySQL dev server 连接,使用前应确保 loadPlugin("ODBC")已经被运行过
  4. *
  5. * Create 20240711 使用ODBC连接MySQL数据库 Joey
  6. *
  7. */
  8. def connect_mysql(user='pf_user') {
  9. // 阿里云的mysql被魔改过,当前DolphinDB无法支持MySQL插件,只能用ODBC
  10. // loadPlugin("ODBC")
  11. // conn = odbc::connect("Driver={MySQL ODBC 9.0 UNICODE Driver};Server=funditdb-dev.mysql.rds.aliyuncs.com;Database=mfdb;User=pf_user;Password=MzBlMDA0OG", "MySQL")
  12. // 使用Windows的ODBC数据源事先设置号的连接
  13. // conn = odbc::connect("Dsn=FunditDB-mfdb")
  14. s = "Dsn=FunditDB-dev-" + user;
  15. conn = odbc::connect(s);
  16. // t = odbc::query(conn, "SELECT * FROM pfdb.pf_portfolio_nav LIMIT 100")
  17. return conn;
  18. }
  19. /*
  20. * 取本地数据库
  21. *
  22. * get_local_database("fundit", "mfdb")
  23. */
  24. def get_local_database(server_name, db_name) {
  25. db = database(directory="dfs://" + server_name + "/" + db_name + "/");
  26. return db;
  27. }
  28. /*
  29. * 读本地dolphindb数据表
  30. *
  31. * load_table_from_local("fundit", mfdb.fund_performance")
  32. */
  33. def load_table_from_local(server_name, table_name) {
  34. db = get_local_database(server_name, table_name.split(".")[0])
  35. return loadTable(db, table_name.split(".")[1])
  36. }
  37. /*
  38. * 未知形态的id转为MySQL需要的的逗号分隔字符串
  39. *
  40. * Example: ids_to_string("'a','b','c'");
  41. * ids_to_string(['a', NULL, 'c']);
  42. * ids_to_string([1,2,3]);
  43. * ids_to_string(12);
  44. * ids_to_string('').isNull();
  45. */
  46. def ids_to_string(ids) {
  47. s_ids = '';
  48. if(ids.isVoid()) return s_ids;
  49. // 输入的 ids 是字符串标量
  50. if (ids.form() == 0) {
  51. s_ids = (ids$STRING).trim();
  52. // 输入的 ids 是字符串向量
  53. } else if(ids.form() == 1) {
  54. if(ids.type() == 4) // INTEGER
  55. s_ids = ids.concat(",").trim();
  56. else // STRING
  57. s_ids = "'" + ids.concat("','").trim() + "'";
  58. // 缺省返回空
  59. } else {
  60. s_ids = NULL;
  61. }
  62. return s_ids;
  63. }
  64. /*
  65. * 【初始化数据专用】 返回初始化数据时的各类常数
  66. *
  67. *
  68. */
  69. def get_ini_data_const() {
  70. d = dict(STRING, ANY);
  71. d['date'] = 1989.01.01;
  72. return d;
  73. }
  74. /*
  75. * 返回ID的规律(前缀)
  76. *
  77. */
  78. def get_entity_id_info() {
  79. tmp = table(10:0, ['entity_type', 'prefix'], [STRING, STRING]);
  80. // 公募,私募,私有基金,股票,市场指数,图译指数,图译因子,人物,公司
  81. INSERT INTO tmp VALUES (`MF`HF`CF`EQ`MI`FI`CI`FA`PL`CO, `MF`HF`CF`EQ`IN`IN`CI`FA`PL`CO);
  82. return tmp;
  83. }
  84. /*
  85. * 返回标准RBSA的几组指数集
  86. *
  87. */
  88. def get_rbsa_index() {
  89. d = dict(STRING, ANY);
  90. d['AS0000005Q'] = ['IN00000008', 'IN00000077','IN0000007G', 'IN0000009M'];
  91. d['BondType'] = ['IN0000007A', 'IN0000007G','IN0000008J', 'IN000002CM'];
  92. d['Cap3Style'] = ['FA00000WKG', 'FA00000WKH','IN0000007G'];
  93. d['CNI7Style'] = ['IN0000000S', 'IN0000000T','IN0000000U', 'IN0000000V', 'IN0000000W', 'IN0000000X', 'IN0000007G'];
  94. d['CSI11'] = ['IN0000000Y', 'IN0000000Z','IN00000010', 'IN00000011', 'IN00000012', 'IN00000013', 'IN00000014', 'IN00000015', 'IN00000016', 'IN00000017', 'IN0000007G'];
  95. d['CSI5'] = ['FA00000VML', 'FA00000VMM','FA00000VMN', 'FA00000VMO', 'IN0000007G'];
  96. d['Large4Assets'] = ['IN00000008', 'IN00000077','IN0000007G', 'IN0000009M'];
  97. return d;
  98. }
  99. /*
  100. * 根据不同类型的主体返回其净值表的表名、字段名和ID前两位特征字符
  101. */
  102. def get_nav_table_description(entity_type) {
  103. tmp_universe = table(100:0,
  104. ['type', 'table_name', 'sec_id_col', 'cumulative_nav_col', 'nav_col', 'prefix', 'price_date_col'],
  105. [STRING, STRING, STRING, STRING, STRING, STRING, STRING]);
  106. // 分别对应:私募,公募,私有基金,股票,市场指数,图译指数,私有指数,图译因子,组合, 基金经理, 基金公司
  107. INSERT INTO tmp_universe VALUES (
  108. ['HF', 'MF', 'CF', 'EQ', 'MI', 'FI', 'CI', 'FA', 'PF', 'PL', 'CO'],
  109. ['mfdb.nav', 'mfdb.public_nav', 'pfdb.pf_cus_fund_nav', 'mfdb.stock_price', 'mfdb.market_indexes', 'mfdb.indexes_ty_index', 'pfdb.cm_udf_index_nav', 'pfdb.cm_factor_value', 'pfdb.pf_portfolio_nav', 'mfdb.fund_manager_fitted_curve', 'mfdb.company_fitted_curve'],
  110. ['fund_id', 'fund_id', 'fund_id', 'sec_id', 'index_id', 'index_id', 'index_id', 'factor_id', 'portfolio_id', 'fund_manager_id', 'company_id'],
  111. ['cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'close', 'index_value', 'cumulative_nav', 'factor_value', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav'],
  112. ['nav', 'nav', 'nav', 'nav', 'close', 'index_value', 'cumulative_nav', 'factor_value', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav'],
  113. ['HF', 'MF', 'CF', 'EQ', 'IN', 'IN', 'CI', 'FA', '', 'PL', 'CO'],
  114. ['price_date', 'price_date', 'price_date', 'price_date', 'price_date', 'price_date', 'price_date', 'price_date', 'price_date', 'end_date', 'end_date']);
  115. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  116. }
  117. /*
  118. * 根据不同类型的主体返回其业绩表的表名、字段名和ID前两位特征字符
  119. */
  120. def get_performance_table_description(entity_type) {
  121. tmp_universe = table(100:0,
  122. ['type', 'table_name', 'sec_id_col', 'cumulative_nav_col', 'ret_col', 'prefix'],
  123. [STRING, STRING, STRING, STRING, STRING, STRING]);
  124. // 分别对应:私募,公募,私有基金,股票,市场指数,图译指数,私有指数,图译因子,组合
  125. INSERT INTO tmp_universe VALUES (
  126. ['HF', 'MF', 'CF', 'EQ', 'MI', 'FI', 'CI', 'FA', 'PF', 'PL', 'CO'],
  127. ['mfdb.fund_performance', 'mfdb.fund_performance', 'pfdb.pf_cus_fund_performance', 'mfdb.stock_performance', 'mfdb.fund_performance', 'mfdb.fund_performance', 'pfdb.cm_udf_index_performance', 'pfdb.cm_factor_performance', 'pfdb.pf_portfolio_performance', 'mfdb.manager_performance', 'mfdb.company_performance'],
  128. ['fund_id', 'fund_id', 'fund_id', 'sec_id', 'fund_id', 'fund_id', 'index_id', 'factor_id', 'portfolio_id', 'manager_id', 'company_id'],
  129. ['cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'factor_value', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav'],
  130. ['ret_1m', 'ret_1m', 'ret_1m', 'ret_1m', 'ret_1m', 'ret_1m', 'ret_1m', 'ret_1m', 'ret_1m', 'ret_1m', 'ret_1m'],
  131. ['HF', 'MF', 'CF', 'EQ', 'IN', 'IN', 'CI', 'FA', '', 'PL', 'CO']);
  132. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  133. }
  134. /*
  135. * 根据不同类型的主体返回其业绩表的表名、字段名和ID前两位特征字符
  136. */
  137. def get_performance_weekly_table_description(entity_type) {
  138. tmp_universe = table(100:0,
  139. ['type', 'table_name', 'sec_id_col', 'cumulative_nav_col', 'ret_col', 'prefix'],
  140. [STRING, STRING, STRING, STRING, STRING, STRING]);
  141. // 分别对应:私募,公募,私有基金,股票,市场指数,图译指数,私有指数,图译因子,组合
  142. INSERT INTO tmp_universe VALUES (
  143. ['HF', 'MF', 'CF', 'EQ', 'MI', 'FI', 'CI', 'FA', 'PF'],
  144. ['mfdb.fund_performance_weekly', 'mfdb.fund_performance_weekly', 'pfdb.pf_cus_fund_performance_weekly', 'mfdb.stock_performance_weekly', 'mfdb.fund_performance_weekly', 'mfdb.fund_performance_weekly', 'pfdb.cm_udf_index_performance_weekly', 'pfdb.cm_factor_performance_weekly', 'pfdb.pf_portfolio_performance_weekly'],
  145. ['fund_id', 'fund_id', 'fund_id', 'sec_id', 'fund_id', 'fund_id', 'index_id', 'factor_id', 'portfolio_id'],
  146. ['cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'factor_value', 'cumulative_nav'],
  147. ['ret_1w', 'ret_1w', 'ret_1w', 'ret_1w', 'ret_1w', 'ret_1w', 'ret_1w', 'ret_1w', 'ret_1w'],
  148. ['HF', 'MF', 'CF', 'EQ', 'IN', 'IN', 'CI', 'FA', '']);
  149. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  150. }
  151. /*
  152. * 根据不同类型的主体返回其业绩表的表名、字段名和ID前两位特征字符
  153. */
  154. def get_latest_performance_table_description(entity_type) {
  155. tmp_universe = table(100:0,
  156. ['type', 'table_name', 'sec_id_col', 'cumulative_nav_col', 'prefix'],
  157. [STRING, STRING, STRING, STRING, STRING]);
  158. // 分别对应:私募,公募,私有基金,股票,市场指数,图译指数,私有指数,图译因子,组合
  159. INSERT INTO tmp_universe VALUES (
  160. ['HF', 'MF', 'CF', 'EQ', 'MI', 'FI', 'CI', 'FA', 'PF'],
  161. ['mfdb.fund_latest_nav_performance', 'mfdb.fund_latest_nav_performance', 'pfdb.pf_cus_fund_latest_nav_performance', 'mfdb.stock_latest_nav_performance', 'mfdb.fund_latest_nav_performance', 'mfdb.fund_latest_nav_performance', 'pfdb.cm_udf_index_latest_nav_performance', 'pfdb.pf_factor_latest_nav_performance', 'pfdb.pf_portfolio_latest_nav_performance'],
  162. ['fund_id', 'fund_id', 'fund_id', 'sec_id', 'fund_id', 'fund_id', 'index_id', 'factor_id', 'portfolio_id'],
  163. ['cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'factor_value', 'cumulative_nav'],
  164. ['HF', 'MF', 'CF', 'EQ', 'IN', 'IN', 'CI', 'FA', '']);
  165. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  166. }
  167. /*
  168. * 根据不同类型的主体返回其杂项指标的表名、字段名
  169. *
  170. * Example: get_indicator_table_description('HF');
  171. */
  172. def get_indicator_table_description(entity_type) {
  173. tmp_universe = table(100:0,
  174. ['type', 'table_name', 'sec_id_col'],
  175. [STRING, STRING, STRING]);
  176. // 分别对应:私募,公募,私有基金,市场指数,图译指数,私有指数,图译因子,组合,基金经理,基金公司
  177. INSERT INTO tmp_universe VALUES (
  178. ['HF', 'MF', 'CF', 'MI', 'FI', 'CI', 'FA', 'PF', 'PL', 'CO'],
  179. ['mfdb.fund_indicator', 'mfdb.fund_indicator', 'pfdb.pf_cus_fund_indicator', 'mfdb.fund_indicator', 'mfdb.fund_indicator', 'pfdb.cm_udf_index_indicator', 'pfdb.cm_factor_indicator', 'pfdb.pf_portfolio_indicator', 'mfdb.manager_indicator', 'mfdb.company_indicator'],
  180. ['fund_id', 'fund_id', 'fund_id', 'fund_id', 'fund_id', 'index_id', 'factor_id', 'portfolio_id', 'manager_id', 'company_id'] );
  181. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  182. }
  183. /*
  184. * 根据不同类型的主体返回其风险指标的表名、字段名
  185. *
  186. * Example: get_risk_stats_table_description('HF');
  187. */
  188. def get_risk_stats_table_description(entity_type) {
  189. tmp_universe = table(100:0,
  190. ['type', 'table_name', 'sec_id_col'],
  191. [STRING, STRING, STRING]);
  192. // 分别对应:私募,公募,私有基金,市场指数,图译指数,私有指数,图译因子,组合,基金经理,基金公司
  193. INSERT INTO tmp_universe VALUES (
  194. ['HF', 'MF', 'CF', 'MI', 'FI', 'CI', 'FA', 'PF', 'PL', 'CO'],
  195. ['mfdb.fund_risk_stats', 'mfdb.fund_risk_stats', 'pfdb.pf_cus_fund_risk_stats', 'mfdb.fund_risk_stats', 'mfdb.fund_risk_stats', 'pfdb.cm_udf_index_risk_stats', 'pfdb.cm_factor_risk_stats', 'pfdb.pf_portfolio_risk_stats', 'mfdb.manager_risk_stats', 'mfdb.company_risk_stats'],
  196. ['fund_id', 'fund_id', 'fund_id', 'fund_id', 'fund_id', 'index_id', 'factor_id', 'portfolio_id', 'manager_id', 'company_id'] );
  197. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  198. }
  199. /*
  200. * 根据不同类型的主体返回其风险调整收益指标的表名、字段名
  201. *
  202. * Example: get_riskadjret_stats_table_description('HF');
  203. */
  204. def get_riskadjret_stats_table_description(entity_type) {
  205. tmp_universe = table(100:0,
  206. ['type', 'table_name', 'sec_id_col'],
  207. [STRING, STRING, STRING]);
  208. // 分别对应:私募,公募,私有基金,市场指数,图译指数,私有指数,图译因子,组合,基金经理,基金公司
  209. INSERT INTO tmp_universe VALUES (
  210. ['HF', 'MF', 'CF', 'MI', 'FI', 'CI', 'FA', 'PF', 'PL', 'CO'],
  211. ['mfdb.fund_riskadjret_stats', 'mfdb.fund_riskadjret_stats', 'pfdb.pf_cus_fund_riskadjret_stats', 'mfdb.fund_riskadjret_stats', 'mfdb.fund_riskadjret_stats', 'pfdb.cm_udf_index_riskadjret_stats', 'pfdb.cm_factor_riskadjret_stats', 'pfdb.pf_portfolio_riskadjret_stats', 'mfdb.manager_riskadjret_stats', 'mfdb.company_riskadjret_stats'],
  212. ['fund_id', 'fund_id', 'fund_id', 'fund_id', 'fund_id', 'index_id', 'factor_id', 'portfolio_id', 'manager_id', 'company_id'] );
  213. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  214. }
  215. /*
  216. * 根据不同类型的主体返回其杂项指标的表名、字段名
  217. *
  218. * Example: get_capture_style_table_description('MF');
  219. */
  220. def get_capture_style_table_description(entity_type) {
  221. tmp_universe = table(100:0,
  222. ['type', 'table_name', 'sec_id_col'],
  223. [STRING, STRING, STRING]);
  224. // 分别对应:私募,公募,私有基金,市场指数,图译指数,私有指数,图译因子,组合,基金经理,基金公司
  225. INSERT INTO tmp_universe VALUES (
  226. ['HF', 'MF', 'CF', 'MI', 'FI', 'CI', 'FA', 'PF', 'PL', 'CO'],
  227. ['mfdb.fund_style_stats', 'mfdb.fund_style_stats', 'pfdb.pf_cus_fund_style_stats', 'mfdb.fund_style_stats', 'mfdb.fund_style_stats', 'pfdb.cm_udf_index_style_stats', 'pfdb.cm_factor_style_stats', 'pfdb.pf_portfolio_style_stats', 'mfdb.manager_style_stats', 'mfdb.company_style_stats'],
  228. ['fund_id', 'fund_id', 'fund_id', 'fund_id', 'fund_id', 'index_id', 'factor_id', 'portfolio_id', 'manager_id', 'company_id'] );
  229. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  230. }
  231. /*
  232. * 根据不同类型的主体返回其晨星指标的表名、字段名
  233. *
  234. * Example: get_ms_stats_table_description('MF');
  235. */
  236. def get_ms_stats_table_description(entity_type) {
  237. tmp_universe = table(100:0,
  238. ['type', 'table_name', 'sec_id_col'],
  239. [STRING, STRING, STRING]);
  240. // 分别对应:私募,公募,私有基金,市场指数,图译指数,私有指数,图译因子,组合,基金经理,基金公司
  241. INSERT INTO tmp_universe VALUES (
  242. ['HF', 'MF', 'CF', 'MI', 'FI', 'CI', 'FA', 'PF', 'PL', 'CO'],
  243. ['mfdb.fund_ms_stats', 'mfdb.fund_ms_stats', 'pfdb.pf_cus_fund_ms_stats', 'mfdb.fund_ms_stats', 'mfdb.fund_ms_stats', 'pfdb.cm_udf_index_ms_stats', 'pfdb.cm_factor_ms_stats', 'pfdb.pf_portfolio_ms_stats', 'mfdb.manager_ms_stats', 'mfdb.company_ms_stats'],
  244. ['fund_id', 'fund_id', 'fund_id', 'fund_id', 'fund_id', 'index_id', 'factor_id', 'portfolio_id', 'manager_id', 'company_id'] );
  245. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  246. }
  247. /*
  248. * 根据不同类型的主体返回其BFI指标的表名、字段名
  249. *
  250. * Example: get_bfi_indicator_table_description('PL');
  251. */
  252. def get_bfi_indicator_table_description(entity_type) {
  253. tmp_universe = table(100:0,
  254. ['type', 'table_name', 'sec_id_col'],
  255. [STRING, STRING, STRING]);
  256. // 分别对应:私募,公募,组合,基金经理
  257. INSERT INTO tmp_universe VALUES (
  258. ['HF', 'MF', 'PF', 'PL'],
  259. ['mfdb.fund_ty_bfi_bm_indicator', 'mfdb.fund_ty_bfi_bm_indicator', 'pfdb.pf_portfolio_ty_bfi_bm_indicator', 'mfdb.manager_ty_bfi_bm_indicator'],
  260. ['fund_id', 'fund_id', 'portfolio_id', 'manager_id'] );
  261. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  262. }
  263. /*
  264. * 根据不同类型的主体返回其有效BFI因子的表名、字段名
  265. *
  266. * Example: get_bfi_by_category_group_table_description('HF');
  267. */
  268. def get_bfi_by_category_group_table_description(entity_type) {
  269. tmp_universe = table(100:0,
  270. ['type', 'table_name', 'sec_id_col'],
  271. [STRING, STRING, STRING]);
  272. // 分别对应:私募,公募,私有基金,市场指数,图译指数,私有指数,图译因子,组合, ,基金经理
  273. INSERT INTO tmp_universe VALUES (
  274. ['HF', 'MF', 'CF', 'MI', 'FI', 'CI', 'FA', 'PF', 'PL'],
  275. ['pfdb.pf_fund_factor_bfi_by_category_group', 'pfdb.pf_fund_factor_bfi_by_category_group', NULL, NULL, NULL, NULL, NULL, 'pfdb.pf_portfolio_factor_bfi_by_category_group', 'pfdb.pf_manager_factor_bfi_by_category_group'],
  276. ['fund_id', 'fund_id', NULL, NULL, NULL, NULL, NULL, 'portfolio_id', 'manager_id'] );
  277. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  278. }
  279. /*
  280. * 根据不同类型的主体返回其主策略排名表名、字段名
  281. *
  282. * Example: get_indicator_ranking_table_description('HF');
  283. */
  284. def get_indicator_ranking_table_description(entity_type) {
  285. tmp_universe = table(100:0,
  286. ['type', 'table_name', 'sec_id_col'],
  287. [STRING, STRING, STRING]);
  288. // 分别对应:私募,公募,私有基金,组合, 基金经理, 基金公司
  289. INSERT INTO tmp_universe VALUES (
  290. ['HF', 'MF', 'CF', 'PF', 'PL', 'CO'],
  291. ['pfdb.pf_fund_indicator_ranking', 'pfdb.pf_fund_indicator_ranking', 'pf_cus_fund_indicator_ranking', 'pfdb.pf_portfolio_indicator_ranking', 'pfdb.pf_manager_indicator_ranking', 'pfdb.pf_company_indicator_ranking'],
  292. ['fund_id', 'fund_id', 'fund_id', 'portfolio_id', 'manager_id', 'company_id'] );
  293. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  294. }
  295. /*
  296. * 根据不同类型的主体返回其BFI排名表名、字段名
  297. *
  298. * Example: get_bfi_bm_indicator_ranking_table_description('HF');
  299. */
  300. def get_bfi_bm_indicator_ranking_table_description(entity_type) {
  301. tmp_universe = table(100:0,
  302. ['type', 'table_name', 'sec_id_col'],
  303. [STRING, STRING, STRING]);
  304. // 分别对应:私募,公募,组合, 基金经理
  305. INSERT INTO tmp_universe VALUES (
  306. ['HF', 'MF', 'PF', 'PL'],
  307. ['pfdb.pf_fund_bfi_bm_indicator_ranking', 'pfdb.pf_fund_bfi_bm_indicator_ranking', 'pfdb.pf_portfolio_bfi_bm_indicator_ranking', 'pfdb.pf_manager_bfi_bm_indicator_ranking'],
  308. ['fund_id', 'fund_id', 'portfolio_id', 'manager_id'] );
  309. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  310. }
  311. /*
  312. * Annulized multiple
  313. */
  314. def get_annulization_multiple(freq) {
  315. ret = 1;
  316. if (freq == 'd') {
  317. ret = 252; // We have differences here between Java and DolphinDB, Java uses 365.25 days
  318. } else if (freq == 'w') {
  319. ret = 52;
  320. } else if (freq == 'm') {
  321. ret = 12;
  322. } else if (freq == 'q') {
  323. ret = 4;
  324. } else if (freq == 's') {
  325. ret = 2;
  326. } else if (freq == 'a') {
  327. ret = 1;
  328. }
  329. return ret;
  330. }
  331. /*
  332. * 计算MySQL中常用的 year_week, 周一为一个星期的第一天,相当于 YEARWEEK(date, 1)
  333. *
  334. *
  335. * Example: get_year_week(2024.10.27);
  336. * get_year_week(2024.11.01);
  337. *
  338. */
  339. def get_year_week(date) {
  340. // 当12月31日是周四、五、六时,该周为第52周,所以次年前几天有可能是上一年的第52,53周
  341. return iif(date.weekOfYear() >= 52 && date.monthOfYear() == 1, date.year()-1, date.year())$STRING + (date.weekOfYear()$STRING).lpad(2, "0");
  342. }