sqlUtilities.dos 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470
  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. * 【RETIRED】返回标准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. d['GBA7Asset'] = ['IN00000008', 'IN000002EZ', 'IN00000077', 'IN000002F4', 'IN0000009M', 'IN0000007G', 'IN000002HO'];
  98. d['GBA4Style'] = ['IN00000008', 'IN0000008O', 'IN000002L2', 'IN000002L5', 'IN000002HO'];
  99. d['GBA4Sector'] = ['FA00000WKI', 'FA00000WKN', 'FA00000WKK', 'FA00000WKL', 'IN000002HO'];
  100. return d;
  101. }
  102. /*
  103. * 根据不同类型的主体返回其净值表的表名、字段名和ID前两位特征字符
  104. */
  105. def get_nav_table_description(entity_type) {
  106. tmp_universe = table(100:0,
  107. ['type', 'table_name', 'sec_id_col', 'cumulative_nav_col', 'nav_col', 'prefix', 'price_date_col'],
  108. [STRING, STRING, STRING, STRING, STRING, STRING, STRING]);
  109. // 分别对应:私募,公募,私有基金,股票,市场指数,图译指数,私有指数,图译因子,组合, 基金经理, 基金公司
  110. INSERT INTO tmp_universe VALUES (
  111. ['HF', 'MF', 'CF', 'EQ', 'MI', 'FI', 'CI', 'FA', 'PF', 'PL', 'CO'],
  112. ['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'],
  113. ['fund_id', 'fund_id', 'fund_id', 'sec_id', 'index_id', 'index_id', 'index_id', 'factor_id', 'portfolio_id', 'fund_manager_id', 'company_id'],
  114. ['cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'close', 'index_value', 'cumulative_nav', 'factor_value', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav'],
  115. ['nav', 'nav', 'nav', 'nav', 'close', 'index_value', 'cumulative_nav', 'factor_value', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav'],
  116. ['HF', 'MF', 'CF', 'EQ', 'IN', 'IN', 'CI', 'FA', '', 'PL', 'CO'],
  117. ['price_date', 'price_date', 'price_date', 'price_date', 'price_date', 'price_date', 'price_date', 'price_date', 'price_date', 'end_date', 'end_date']);
  118. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  119. }
  120. /*
  121. * 根据不同类型的主体返回其业绩表的表名、字段名和ID前两位特征字符
  122. */
  123. def get_performance_table_description(entity_type) {
  124. tmp_universe = table(100:0,
  125. ['type', 'table_name', 'sec_id_col', 'cumulative_nav_col', 'ret_col', 'prefix'],
  126. [STRING, STRING, STRING, STRING, STRING, STRING]);
  127. // 分别对应:私募,公募,私有基金,股票,市场指数,图译指数,私有指数,图译因子,组合
  128. INSERT INTO tmp_universe VALUES (
  129. ['HF', 'MF', 'CF', 'EQ', 'MI', 'FI', 'CI', 'FA', 'PF', 'PL', 'CO'],
  130. ['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'],
  131. ['fund_id', 'fund_id', 'fund_id', 'sec_id', 'fund_id', 'fund_id', 'index_id', 'factor_id', 'portfolio_id', 'manager_id', 'company_id'],
  132. ['cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'factor_value', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav'],
  133. ['ret_1m', 'ret_1m', 'ret_1m', 'ret_1m', 'ret_1m', 'ret_1m', 'ret_1m', 'ret_1m', 'ret_1m', 'ret_1m', 'ret_1m'],
  134. ['HF', 'MF', 'CF', 'EQ', 'IN', 'IN', 'CI', 'FA', '', 'PL', 'CO']);
  135. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  136. }
  137. /*
  138. * 根据不同类型的主体返回其业绩表的表名、字段名和ID前两位特征字符
  139. */
  140. def get_performance_weekly_table_description(entity_type) {
  141. tmp_universe = table(100:0,
  142. ['type', 'table_name', 'sec_id_col', 'cumulative_nav_col', 'ret_col', 'prefix'],
  143. [STRING, STRING, STRING, STRING, STRING, STRING]);
  144. // 分别对应:私募,公募,私有基金,股票,市场指数,图译指数,私有指数,图译因子,组合
  145. INSERT INTO tmp_universe VALUES (
  146. ['HF', 'MF', 'CF', 'EQ', 'MI', 'FI', 'CI', 'FA', 'PF'],
  147. ['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'],
  148. ['fund_id', 'fund_id', 'fund_id', 'sec_id', 'fund_id', 'fund_id', 'index_id', 'factor_id', 'portfolio_id'],
  149. ['cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'factor_value', 'cumulative_nav'],
  150. ['ret_1w', 'ret_1w', 'ret_1w', 'ret_1w', 'ret_1w', 'ret_1w', 'ret_1w', 'ret_1w', 'ret_1w'],
  151. ['HF', 'MF', 'CF', 'EQ', 'IN', 'IN', 'CI', 'FA', '']);
  152. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  153. }
  154. /*
  155. * 根据不同类型的主体返回其业绩表的表名、字段名和ID前两位特征字符
  156. */
  157. def get_latest_performance_table_description(entity_type) {
  158. tmp_universe = table(100:0,
  159. ['type', 'table_name', 'sec_id_col', 'cumulative_nav_col', 'prefix'],
  160. [STRING, STRING, STRING, STRING, STRING]);
  161. // 分别对应:私募,公募,私有基金,股票,市场指数,图译指数,私有指数,图译因子,组合
  162. INSERT INTO tmp_universe VALUES (
  163. ['HF', 'MF', 'CF', 'EQ', 'MI', 'FI', 'CI', 'FA', 'PF'],
  164. ['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'],
  165. ['fund_id', 'fund_id', 'fund_id', 'sec_id', 'fund_id', 'fund_id', 'index_id', 'factor_id', 'portfolio_id'],
  166. ['cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'cumulative_nav', 'factor_value', 'cumulative_nav'],
  167. ['HF', 'MF', 'CF', 'EQ', 'IN', 'IN', 'CI', 'FA', '']);
  168. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  169. }
  170. /*
  171. * 根据不同类型的主体返回其杂项指标的表名、字段名
  172. *
  173. * Example: get_indicator_table_description('HF');
  174. */
  175. def get_indicator_table_description(entity_type) {
  176. tmp_universe = table(100:0,
  177. ['type', 'table_name', 'sec_id_col'],
  178. [STRING, STRING, STRING]);
  179. // 分别对应:私募,公募,私有基金,市场指数,图译指数,私有指数,图译因子,组合,基金经理,基金公司
  180. INSERT INTO tmp_universe VALUES (
  181. ['HF', 'MF', 'CF', 'MI', 'FI', 'CI', 'FA', 'PF', 'PL', 'CO'],
  182. ['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'],
  183. ['fund_id', 'fund_id', 'fund_id', 'fund_id', 'fund_id', 'index_id', 'factor_id', 'portfolio_id', 'manager_id', 'company_id'] );
  184. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  185. }
  186. /*
  187. * 根据不同类型的主体返回其风险指标的表名、字段名
  188. *
  189. * Example: get_risk_stats_table_description('HF');
  190. */
  191. def get_risk_stats_table_description(entity_type) {
  192. tmp_universe = table(100:0,
  193. ['type', 'table_name', 'sec_id_col'],
  194. [STRING, STRING, STRING]);
  195. // 分别对应:私募,公募,私有基金,市场指数,图译指数,私有指数,图译因子,组合,基金经理,基金公司
  196. INSERT INTO tmp_universe VALUES (
  197. ['HF', 'MF', 'CF', 'MI', 'FI', 'CI', 'FA', 'PF', 'PL', 'CO'],
  198. ['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'],
  199. ['fund_id', 'fund_id', 'fund_id', 'fund_id', 'fund_id', 'index_id', 'factor_id', 'portfolio_id', 'manager_id', 'company_id'] );
  200. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  201. }
  202. /*
  203. * 根据不同类型的主体返回其风险调整收益指标的表名、字段名
  204. *
  205. * Example: get_riskadjret_stats_table_description('HF');
  206. */
  207. def get_riskadjret_stats_table_description(entity_type) {
  208. tmp_universe = table(100:0,
  209. ['type', 'table_name', 'sec_id_col'],
  210. [STRING, STRING, STRING]);
  211. // 分别对应:私募,公募,私有基金,市场指数,图译指数,私有指数,图译因子,组合,基金经理,基金公司
  212. INSERT INTO tmp_universe VALUES (
  213. ['HF', 'MF', 'CF', 'MI', 'FI', 'CI', 'FA', 'PF', 'PL', 'CO'],
  214. ['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'],
  215. ['fund_id', 'fund_id', 'fund_id', 'fund_id', 'fund_id', 'index_id', 'factor_id', 'portfolio_id', 'manager_id', 'company_id'] );
  216. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  217. }
  218. /*
  219. * 根据不同类型的主体返回其杂项指标的表名、字段名
  220. *
  221. * Example: get_capture_style_table_description('MF');
  222. */
  223. def get_capture_style_table_description(entity_type) {
  224. tmp_universe = table(100:0,
  225. ['type', 'table_name', 'sec_id_col'],
  226. [STRING, STRING, STRING]);
  227. // 分别对应:私募,公募,私有基金,市场指数,图译指数,私有指数,图译因子,组合,基金经理,基金公司
  228. INSERT INTO tmp_universe VALUES (
  229. ['HF', 'MF', 'CF', 'MI', 'FI', 'CI', 'FA', 'PF', 'PL', 'CO'],
  230. ['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'],
  231. ['fund_id', 'fund_id', 'fund_id', 'fund_id', 'fund_id', 'index_id', 'factor_id', 'portfolio_id', 'manager_id', 'company_id'] );
  232. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  233. }
  234. /*
  235. * 根据不同类型的主体返回其晨星指标的表名、字段名
  236. *
  237. * Example: get_ms_stats_table_description('MF');
  238. */
  239. def get_ms_stats_table_description(entity_type) {
  240. tmp_universe = table(100:0,
  241. ['type', 'table_name', 'sec_id_col'],
  242. [STRING, STRING, STRING]);
  243. // 分别对应:私募,公募,私有基金,市场指数,图译指数,私有指数,图译因子,组合,基金经理,基金公司
  244. INSERT INTO tmp_universe VALUES (
  245. ['HF', 'MF', 'CF', 'MI', 'FI', 'CI', 'FA', 'PF', 'PL', 'CO'],
  246. ['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'],
  247. ['fund_id', 'fund_id', 'fund_id', 'fund_id', 'fund_id', 'index_id', 'factor_id', 'portfolio_id', 'manager_id', 'company_id'] );
  248. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  249. }
  250. /*
  251. * 根据不同类型的主体返回其BFI指标的表名、字段名
  252. *
  253. * Example: get_bfi_indicator_table_description('PL');
  254. */
  255. def get_bfi_indicator_table_description(entity_type) {
  256. tmp_universe = table(100:0,
  257. ['type', 'table_name', 'sec_id_col'],
  258. [STRING, STRING, STRING]);
  259. // 分别对应:私募,公募,组合,基金经理
  260. INSERT INTO tmp_universe VALUES (
  261. ['HF', 'MF', 'PF', 'PL'],
  262. ['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'],
  263. ['fund_id', 'fund_id', 'portfolio_id', 'manager_id'] );
  264. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  265. }
  266. /*
  267. * 根据不同类型的主体返回其有效BFI因子的表名、字段名
  268. *
  269. * Example: get_bfi_by_category_group_table_description('HF');
  270. */
  271. def get_bfi_by_category_group_table_description(entity_type) {
  272. tmp_universe = table(100:0,
  273. ['type', 'table_name', 'sec_id_col'],
  274. [STRING, STRING, STRING]);
  275. // 分别对应:私募,公募,私有基金,市场指数,图译指数,私有指数,图译因子,组合, ,基金经理
  276. INSERT INTO tmp_universe VALUES (
  277. ['HF', 'MF', 'CF', 'MI', 'FI', 'CI', 'FA', 'PF', 'PL'],
  278. ['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'],
  279. ['fund_id', 'fund_id', NULL, NULL, NULL, NULL, NULL, 'portfolio_id', 'manager_id'] );
  280. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  281. }
  282. /*
  283. * 根据不同类型的主体返回其主策略排名表名、字段名
  284. *
  285. * Example: get_indicator_ranking_table_description('HF');
  286. */
  287. def get_indicator_ranking_table_description(entity_type) {
  288. tmp_universe = table(100:0,
  289. ['type', 'table_name', 'sec_id_col'],
  290. [STRING, STRING, STRING]);
  291. // 分别对应:私募,公募,私有基金,组合, 基金经理, 基金公司
  292. INSERT INTO tmp_universe VALUES (
  293. ['HF', 'MF', 'CF', 'PF', 'PL', 'CO'],
  294. ['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'],
  295. ['fund_id', 'fund_id', 'fund_id', 'portfolio_id', 'manager_id', 'company_id'] );
  296. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  297. }
  298. /*
  299. * 根据不同类型的主体返回其BFI排名表名、字段名
  300. *
  301. * Example: get_bfi_bm_indicator_ranking_table_description('HF');
  302. */
  303. def get_bfi_bm_indicator_ranking_table_description(entity_type) {
  304. tmp_universe = table(100:0,
  305. ['type', 'table_name', 'sec_id_col'],
  306. [STRING, STRING, STRING]);
  307. // 分别对应:私募,公募,组合, 基金经理
  308. INSERT INTO tmp_universe VALUES (
  309. ['HF', 'MF', 'PF', 'PL'],
  310. ['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'],
  311. ['fund_id', 'fund_id', 'portfolio_id', 'manager_id'] );
  312. return (SELECT * FROM tmp_universe u WHERE u.type = entity_type);
  313. }
  314. /*
  315. * Annulized multiple
  316. */
  317. def get_annulization_multiple(freq) {
  318. ret = 1;
  319. if (freq == 'd') {
  320. ret = 252; // We have differences here between Java and DolphinDB, Java uses 365.25 days
  321. } else if (freq == 'w') {
  322. ret = 52;
  323. } else if (freq == 'm') {
  324. ret = 12;
  325. } else if (freq == 'q') {
  326. ret = 4;
  327. } else if (freq == 's') {
  328. ret = 2;
  329. } else if (freq == 'a') {
  330. ret = 1;
  331. }
  332. return ret;
  333. }
  334. /*
  335. * 计算MySQL中常用的 year_week, 周一为一个星期的第一天,相当于 YEARWEEK(date, 1)
  336. *
  337. * @param date<DATE|VECTOR>
  338. *
  339. * Example: get_year_week(2023.01.01);
  340. * get_year_week([2008.12.31, 2023.01.01]);
  341. *
  342. */
  343. def get_year_week(date) {
  344. year = array(INT, 0, date.size());
  345. for(d in date) {
  346. y = d.year();
  347. // 当12月31日是周四、五、六时,该周为第52周,所以次年前几天有可能是上一年的第52,53周
  348. if(d.weekOfYear() >= 52 && d.monthOfYear() == 1) {
  349. y = d.year() - 1;
  350. // 否则该周为次年的第1周
  351. } else if(d.weekOfYear() == 1 && d.monthOfYear() == 12) {
  352. y = d.year() + 1;
  353. }
  354. year = year.join(y);
  355. }
  356. return year$STRING + (date.weekOfYear()$STRING).lpad(2, "0");
  357. }