task_monthlyPerformance.dos 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  1. module fundit::task_monthlyPerformance
  2. use fundit::sqlUtilities;
  3. use fundit::operationDataPuller;
  4. use fundit::performanceDataPuller;
  5. use fundit::indicatorCalculator;
  6. use fundit::dataSaver;
  7. use fundit::bfiMatcher;
  8. use fundit::rankingCalculator;
  9. use fundit::navCalculator;
  10. /*
  11. * [定时任务] 计算基金一、二级分类排名并存入数据库
  12. *
  13. * @param entity_type <STRING>: 'MF', 'HF' (MF=HF)
  14. * @param end_date <MONTH>:
  15. * @param isFromMySQL <BOOL>: false 时读取dolphin本地的收益及指标表,用于初始化数据
  16. *
  17. *
  18. * Example: CalEntityRankingTask('MF', 2024.09M, true);
  19. */
  20. def CalEntityRankingTask(entityType, endDate, isFromMySQL=true) {
  21. //entityType='PL'
  22. //endDate = 2024.10M
  23. //isFromMySQL = true
  24. if(!(entityType in ['MF', 'HF', 'PL', 'CO'])) return NULL;
  25. entity_info = get_entity_info(entityType, NULL);
  26. v_ranking_tables = cal_indicator_ranking('strategy', entityType, entity_info, endDate, isFromMySQL);
  27. save_ranking_tables(entityType, 'strategy', v_ranking_tables);
  28. }
  29. /*
  30. * [定时任务] 计算基金BFI排名并存入数据库
  31. *
  32. * @param entity_type <STRING>: 'MF', 'HF' (MF=HF)
  33. * @param end_date <MONTH>:
  34. * @param isFromMySQL <BOOL>: false 时读取dolphin本地的收益及指标表,用于初始化数据
  35. *
  36. *
  37. * Example: CalEntityBfiRankingTask('MF', 2024.09M, true);
  38. */
  39. def CalEntityBfiRankingTask(entity_type, end_date, isFromMySQL=true) {
  40. if(!(entity_type in ['MF', 'HF'])) return NULL;
  41. entity_info = get_entity_info(entity_type, NULL);
  42. v_ranking_tables = cal_indicator_ranking('bfi', entity_type, entity_info, end_date, isFromMySQL);
  43. save_ranking_tables(entity_type, v_ranking_tables);
  44. }
  45. /*
  46. * Private Method: 计算相对排名并存入数据库
  47. *
  48. *
  49. */
  50. def cal_and_save_relative_ranking(entity_type, benchmark_ranking, entity_ranking, ranking_by, isFromMySQL=true) {
  51. // benchmark_ranking= tb_fund_ranking
  52. t_entity_ranking = entity_ranking;
  53. cal_relative_ranking(benchmark_ranking, t_entity_ranking, isFromMySQL);
  54. t_entity_ranking.rename!('category_id', iif(ranking_by=='bfi', 'factor_id', ranking_by));
  55. save_relative_ranking_table(entity_type, t_entity_ranking, ranking_by);
  56. }
  57. /*
  58. *
  59. * [定时任务] 以公募基金为评级参考,计算组合、私有基金收益及指标排名
  60. *
  61. * @param entityType <STRING>: PF
  62. *
  63. * TODO: customer fund
  64. * TODO: 计算单个组合时总耗时1.5min, 大部分时间用来获取Mysql数据
  65. *
  66. * Example: CalRelativeRankingTask('PF', NULL, 2024.09M, true);
  67. * CalRelativeRankingTask('PF', 143109, 2024.09M, true);
  68. */
  69. def CalRelativeRankingTask(entity_type, entity_ids, end_date, isFromMySQL=true) {
  70. // entity_type = 'PF'
  71. // end_date = 2024.09M
  72. // isFromMySQL = true
  73. // ranking_by = 'bfi'
  74. // entity_ids = 143109
  75. entity_info = get_entity_info(entity_type, entity_ids);
  76. if(entity_type == 'PF')
  77. entity_info = SELECT * FROM entity_info WHERE portfolio_type IN (1, 2) // 1: 用户组合、2:客户真实组合,忽略客户推荐组合、总览综合等虚拟组合
  78. v_ranking_by = ['strategy', 'substrategy', 'bfi'];
  79. // 暂时以公募混合基金为排名参考
  80. for(ranking_by in v_ranking_by) {
  81. if(ranking_by == 'strategy') {
  82. v_category = EXEC DISTINCT strategy FROM entity_info WHERE strategy IS NOT NULL;
  83. tb_fund_ranking = get_fund_indicator_ranking(NULL, end_date, v_category, isFromMySQL);
  84. UPDATE tb_fund_ranking SET category_id = strategy$STRING;
  85. } else if(ranking_by == 'substrategy') {
  86. v_category = EXEC DISTINCT substrategy FROM entity_info WHERE substrategy IS NOT NULL;
  87. tb_fund_ranking = get_fund_indicator_substrategy_ranking(NULL, end_date, v_category, isFromMySQL);
  88. UPDATE tb_fund_ranking SET category_id = substrategy$STRING;
  89. } else if(ranking_by == 'bfi') {
  90. if(entity_ids != NULL || entity_ids != '')
  91. v_category = EXEC DISTINCT factor_id FROM get_entity_bfi_factors(entity_type, entity_ids, end_date, end_date);
  92. else
  93. v_category = NULL;
  94. tb_fund_ranking = get_fund_bfi_bm_indicator_ranking(NULL, end_date, v_category, isFromMySQL);
  95. UPDATE tb_fund_ranking SET category_id = factor_id;
  96. }
  97. if(tb_fund_ranking.isVoid() || tb_fund_ranking.size() == 0) return;
  98. entity_ranking = transform_data_for_ranking(entity_type, entity_info, end_date, ranking_by, isFromMySQL);
  99. cal_and_save_relative_ranking(entity_type, tb_fund_ranking, entity_ranking, ranking_by, isFromMySQL);
  100. }
  101. }
  102. /*
  103. * 计算并存储基金经理和公司月度净值
  104. *
  105. * @return <TABLE>: [COLUMNS] entity_id, curve_type, strategy, end_date, price_date, ret, nav
  106. *
  107. */
  108. def cal_and_save_mc_nav(entity_type, entity_date, is_save_local) {
  109. rt = '';
  110. if(entity_type == 'PL') s_entity_type = 'manager';
  111. else if(entity_type == 'CO') s_entity_type = 'company';
  112. else return rt;
  113. if(entity_date.isVoid() || entity_date.size() == 0) return rt;
  114. // 准备类似MySQL结构的数据表
  115. tb_entity_nav = create_mc_fitted_curve();
  116. // 暂时与 MySQL 保持一致,只计算公募,私募,公私募综合三条时间序列。未来可细化至公、私募+主策略
  117. d_curve_type = dict(INT, INT);
  118. d_curve_type[1] = 1; // 私募
  119. d_curve_type[4] = 2; // 公募
  120. d_curve_type[7] = -99; // 公私募综合
  121. // 分批跑
  122. i = 0;
  123. batch_size = 1000;
  124. all_entity_id = entity_date.entity_id.distinct();
  125. do { // 14 sec
  126. tb_entity = SELECT * FROM entity_date
  127. WHERE entity_id IN all_entity_id[i : min(all_entity_id.size(), i+batch_size)];
  128. if(tb_entity.isVoid() || tb_entity.size() == 0) break;
  129. s_json = tb_entity.toStdJson();
  130. t_ret = get_mc_monthly_return(s_entity_type, s_json, 0, 1, true);
  131. for(cur in d_curve_type.keys()) {
  132. tmp = SELECT entity_id, cur AS curve_type, 0 AS strategy, end_date, price_date, ret, incl_cal_cnt
  133. FROM t_ret WHERE raise_type = d_curve_type[cur] AND strategy = -99; // 目前只需要全策略
  134. // 计算月收益
  135. tb_nav = cal_mc_nav_by_return(entity_type, tmp);
  136. INSERT INTO tb_entity_nav
  137. SELECT entity_id, curve_type, strategy, end_date, nav, incl_cal_cnt
  138. FROM ej(tb_nav, tmp, ['entity_id', 'curve_type', 'strategy', 'end_date']);
  139. }
  140. i += batch_size;
  141. } while (i <= all_entity_id.size());
  142. if(! tb_entity_nav.isVoid() && tb_entity_nav.size() > 0) {
  143. // save data to MySQL (12 sec)
  144. try {
  145. tb_entity_nav.rename!('entity_id', iif(entity_type == 'PL', 'fund_manager_id', 'company_id'));
  146. save_and_sync(tb_entity_nav, iif(entity_type == 'PL', 'raw_db.fund_manager_fitted_curve', 'raw_db.company_fitted_curve'), );
  147. // 数据初始化时将指标存入本地
  148. if(is_save_local == true) {
  149. save_table(tb_entity_nav, iif(entity_type == 'PL', 'mfdb.fund_manager_fitted_curve', 'mfdb.company_fitted_curve'), false);
  150. }
  151. } catch(ex) {
  152. //TODO: Log errors
  153. rt += ex;
  154. }
  155. }
  156. return rt;
  157. }
  158. /*
  159. * 计算并存储基金经理/公司的月度收益及指标
  160. *
  161. * @param entity_date <TABLE>: entity_id, curve_type, strategy, price_date
  162. * @param monthly_returns <TABLE>: entity_id, curve_type, strategy, end_date, price_date, nav, ret
  163. * @param indicator_type <STRING>: PBI, BFI
  164. *
  165. */
  166. def cal_and_save_mc_indicator(entity_type, entity_date, monthly_returns, indicator_type, is_save_local) {
  167. rt = '';
  168. if(!(entity_type IN ['PL', 'CO'] && indicator_type IN ['PBI', 'BFI'])) return rt;
  169. if(entity_date.isVoid() || entity_date.size() == 0) return rt;
  170. d_indicators = cal_mc_monthly_indicators(entity_type, indicator_type, monthly_returns);
  171. if(d_indicators.isVoid() || d_indicators["7"].isVoid()) break;
  172. // cal_mc_monthly_indicators 返回个两重字典,分别对应 curve_type 和不同区间的数据表,将同样区间的数据表(但不同curve_type)合并
  173. // curve_type: 1:私募,4:公募,7:公私募综合
  174. trailing_num = d_indicators["7"].keys().size();
  175. for(k in d_indicators["7"].keys()) {
  176. if(!d_indicators["1"].isVoid())
  177. d_indicators["7"][k].append!(d_indicators["1"][k]);
  178. if(!d_indicators["4"].isVoid())
  179. d_indicators["7"][k].append!(d_indicators["4"][k]);
  180. }
  181. indicators = d_indicators["7"];
  182. d_indicators = null;
  183. //
  184. // 按照 MySQL 建好各表
  185. if(indicator_type == 'PBI') {
  186. entity_info = SELECT entity_id, curve_type, strategy, price_date.temporalParse('yyyy-MM') AS price_date FROM entity_date;
  187. tb_mc_performance = create_mc_performance();
  188. tb_mc_indicator = create_mc_indicator();
  189. tb_mc_risk_stats = create_mc_risk_stats();
  190. tb_mc_riskadjret_stats = create_mc_riskadjret_stats();
  191. tb_mc_style_stats = create_mc_style_stats();
  192. // 写入数据
  193. generate_entity_performance(entity_info, indicators, true, tb_mc_performance, ['curve_type', 'strategy']);
  194. generate_entity_indicator(entity_info, indicators, true, tb_mc_indicator, ['curve_type', 'strategy']);
  195. generate_entity_risk_stats(entity_info, indicators, true, tb_mc_risk_stats, ['curve_type', 'strategy']);
  196. generate_entity_riskadjret_stats(entity_info, indicators, true, tb_mc_riskadjret_stats, ['curve_type', 'strategy']);
  197. generate_entity_style_stats(entity_info, indicators, true, tb_mc_style_stats, ['curve_type', 'strategy']);
  198. if(! tb_mc_performance.isVoid() && tb_mc_performance.size() > 0) {
  199. // save data to MySQL (13s)
  200. try {
  201. chg_columns_for_mysql(tb_mc_performance, iif(entity_type == 'PL', 'manager_id', 'company_id'));
  202. save_and_sync(tb_mc_performance, iif(entity_type == 'PL', 'raw_db.manager_performance', 'raw_db.company_performance'), );
  203. chg_columns_for_mysql(tb_mc_indicator, iif(entity_type == 'PL', 'manager_id', 'company_id'));
  204. save_and_sync(tb_mc_indicator, iif(entity_type == 'PL', 'raw_db.manager_indicator', 'raw_db.company_indicator'), );
  205. chg_columns_for_mysql(tb_mc_risk_stats, iif(entity_type == 'PL', 'manager_id', 'company_id'));
  206. save_and_sync(tb_mc_risk_stats, iif(entity_type == 'PL', 'raw_db.manager_risk_stats', 'raw_db.company_risk_stats'), );
  207. chg_columns_for_mysql(tb_mc_riskadjret_stats, iif(entity_type == 'PL', 'manager_id', 'company_id'));
  208. save_and_sync(tb_mc_riskadjret_stats, iif(entity_type == 'PL', 'raw_db.manager_riskadjret_stats', 'raw_db.company_riskadjret_stats'), );
  209. chg_columns_for_mysql(tb_mc_style_stats, iif(entity_type == 'PL', 'manager_id', 'company_id'));
  210. save_and_sync(tb_mc_style_stats, iif(entity_type == 'PL', 'raw_db.manager_style_stats', 'raw_db.company_style_stats'), );
  211. // 数据初始化时将指标存入本地
  212. if(is_save_local == true) {
  213. save_table(tb_mc_performance, iif(entity_type == 'PL', 'mfdb.manager_performance', 'mfdb.company_performance'), false);
  214. save_table(tb_mc_indicator, iif(entity_type == 'PL', 'mfdb.manager_indicator', 'mfdb.company_indicator'), false);
  215. save_table(tb_mc_risk_stats, iif(entity_type == 'PL', 'mfdb.manager_risk_stats', 'mfdb.company_risk_stats'), false);
  216. save_table(tb_mc_riskadjret_stats, iif(entity_type == 'PL', 'mfdb.manager_riskadjret_stats', 'mfdb.company_riskadjret_stats'), false);
  217. save_table(tb_mc_style_stats, iif(entity_type == 'PL', 'mfdb.manager_style_stats', 'mfdb.company_style_stats'), false);
  218. }
  219. } catch(ex) {
  220. //TODO: Log errors
  221. rt += ex + '\n';
  222. }
  223. }
  224. } else {
  225. entity_info = SELECT entity_id, curve_type, strategy, end_date.temporalParse('yyyy-MM') AS end_date, factor_id AS benchmark_id FROM entity_date;
  226. tb_mc_bfi_indicator = create_mc_bfi_indicator();
  227. //tb_mc_bfi_indicator.rename!('factor_id', 'benchmark_id');
  228. generate_entity_bfi_indicator(entity_info, indicators, true, tb_mc_bfi_indicator, ['curve_type', 'strategy']);
  229. if(! tb_mc_bfi_indicator.isVoid() && tb_mc_bfi_indicator.size() > 0) {
  230. // save data to MySQL
  231. try {
  232. chg_columns_for_mysql(tb_mc_bfi_indicator, iif(entity_type == 'PL', 'manager_id', 'company_id'));
  233. save_and_sync(tb_mc_bfi_indicator, iif(entity_type == 'PL', 'raw_db.manager_ty_bfi_bm_indicator', 'raw_db.company_ty_bfi_bm_indicator'), );
  234. // 数据初始化时将指标存入本地
  235. if(is_save_local == true)
  236. save_table(tb_mc_bfi_indicator, iif(entity_type == 'PL', 'mfdb.manager_ty_bfi_bm_indicator', 'mfdb.company_ty_bfi_bm_indicator'), false);
  237. } catch(ex) {
  238. //TODO: Log errors
  239. rt = ex;
  240. }
  241. }
  242. }
  243. return rt;
  244. }
  245. /*
  246. * [定时任务]: 基金经理/公司月净值计算
  247. *
  248. * Example: CalMCNavTask('CO', 2024.11.04);
  249. */
  250. def CalMCNavTask(entity_type, updatetime) {
  251. //updatetime = 2024.11.05;
  252. //entity_type = 'CO';
  253. if(!(entity_type IN ['PL', 'CO'])) return;
  254. is_save_local = iif(updatetime <= get_ini_data_const()['updatetime'], true, false);
  255. // 31 sec 简化起见,不区分curve_type, strategy
  256. if(entity_type == 'PL') {
  257. entity_date = get_manager_list_by_fund_updatetime(updatetime);
  258. entity_date.rename!('manager_id', 'entity_id');
  259. }
  260. else {
  261. entity_date = get_company_list_by_fund_updatetime(updatetime);
  262. entity_date.rename!('company_id', 'entity_id');
  263. }
  264. // 15 sec
  265. cal_and_save_mc_nav(entity_type, entity_date, is_save_local);
  266. entity_date = null;
  267. }
  268. /*
  269. * [定时任务]: 基金经理/公司月收益及指标(含标准及BFI)计算
  270. *
  271. * @param entity_type <STRING>: PL, CO
  272. *
  273. * Example: CalMCIndicatorTask('CO', 2024.11.04);
  274. * CalMCIndicatorTask('PL', 2024.11.04);
  275. */
  276. def CalMCIndicatorTask(entity_type, updatetime) {
  277. // entity_type = 'PL';
  278. // updatetime = 2024.11.01
  279. rt = '';
  280. is_save_local = iif(updatetime <= get_ini_data_const()['updatetime'], true, false);
  281. // 3 sec
  282. entity_date = get_entity_list_by_nav_updatetime(entity_type, NULL, updatetime, true);
  283. i = 0;
  284. batch_size = 1000;
  285. v_entity_id = entity_date.entity_id.distinct();
  286. max_cnt = v_entity_id.size();
  287. ver_old_month = 1900.01M;
  288. do {
  289. // 取完整月净值
  290. tb_entity_date = SELECT entity_id, curve_type, strategy, ver_old_month AS end_date
  291. FROM entity_date WHERE entity_id in v_entity_id[i : min(i + batch_size, max_cnt)];
  292. if(tb_entity_date.isVoid() || tb_entity_date.size() == 0) break;
  293. s_json = tb_entity_date.toStdJson();
  294. tb_nav = get_mc_nav_for_return_calculation('PL', s_json, 0);
  295. v_end_date = tb_nav.end_date.temporalParse('yyyy-MM');
  296. tb_nav.replaceColumn!('end_date', v_end_date);
  297. tb_nav.join!(v_end_date.temporalFormat('yyyy-MM-dd').temporalParse('yyyy-MM-dd').businessMonthEnd() AS price_date);
  298. tb_nav.sortBy!(['entity_id', 'curve_type', 'strategy', 'end_date']);
  299. // 计算月度收益
  300. tb_monthly_ret = SELECT entity_id, curve_type, strategy, end_date, price_date, cumulative_nav AS nav, cumulative_nav.ratios()-1 AS ret
  301. FROM tb_nav
  302. CONTEXT BY entity_id, curve_type, strategy;
  303. // 40+ min
  304. cal_and_save_mc_indicator(entity_type, entity_date, tb_monthly_ret, 'PBI', is_save_local);
  305. i += batch_size;
  306. } while (i < max_cnt);
  307. }
  308. /*
  309. * [定时任务]: 基金经理月BFI指标计算
  310. *
  311. *
  312. * Example: CalManagerBfiIndicatorTask(2024.11.04);
  313. */
  314. def CalManagerBfiIndicatorTask(updatetime) {
  315. // updatetime = 2024.11.01
  316. rt = '';
  317. entity_type = 'PL';
  318. is_save_local = iif(updatetime <= get_ini_data_const()['updatetime'], true, false);
  319. // BFI indicator 计算由 bfi matching 表更新驱动
  320. entity_date = get_mc_bfi_factors(entity_type, NULL, 1990.01M, today().month(), updatetime);
  321. entity_date.join!(entity_date.end_date AS price_date);
  322. i = 0;
  323. batch_size = 1000;
  324. v_entity_id = entity_date.entity_id.distinct();
  325. max_cnt = v_entity_id.size();
  326. do {
  327. // 取完整月收益 1+ min
  328. tb_monthly_ret = get_monthly_ret(entity_type, v_entity_id[i : min(i + batch_size, max_cnt)], 1900.01.01, today(), true);
  329. v_end_date = tb_monthly_ret.end_date.temporalParse('yyyy-MM');
  330. tb_monthly_ret.replaceColumn!('end_date', v_end_date);
  331. UPDATE tb_monthly_ret SET price_date = end_date.temporalFormat('yyyy-MM-dd').temporalParse('yyyy-MM-dd').businessMonthEnd() WHERE price_date IS NULL;
  332. // 40+ min
  333. cal_and_save_mc_indicator(entity_type, entity_date, tb_monthly_ret, 'BFI', is_save_local);
  334. i += batch_size;
  335. } while (i < max_cnt);
  336. }
  337. /*
  338. *
  339. * [定时任务]: 基金经理的BFI MATCHING
  340. *
  341. * it takes 9.5 hours
  342. */
  343. def MatchManagerBFITask(updatetime) {
  344. rt = '';
  345. is_save_local = iif(updatetime <= get_ini_data_const()['updatetime'], true, false);
  346. entity_type = 'PL';
  347. // 31 sec
  348. entity_date = get_mc_performance_by_updatetime(entity_type, updatetime);
  349. if(entity_date.isVoid() || entity_date.size() == 0) return rt;
  350. i = 0;
  351. batch_size = 1000;
  352. max_cnt = entity_date.size();
  353. do {
  354. t_entity_date = entity_date[i : min(max_cnt, i + batch_size)];
  355. // 22 min per 1000 records, way too slow
  356. t_bfi = match_mc_bfi(entity_type, t_entity_date);
  357. t_max_r2 = SELECT entity_id , curve_type, strategy, factor_id.first() AS factor_id, end_date,
  358. string(NULL) AS performance_flag, coe.first() AS coe, r2.first() AS r2, concat(factor_name, ",") AS rz_portrait
  359. FROM ej(t_bfi, get_bfi_index_list(), 'factor_id')
  360. GROUP BY entity_id, curve_type, strategy, end_date;
  361. try {
  362. // 高度怀疑 pf_manager_factor_bfi 表只是中间表,没有用,这里就不存了
  363. // 有效 factors 存到 xxx_factor_bfi_by_category_group 表
  364. chg_columns_for_mysql(t_bfi, 'manager_id');
  365. save_and_sync(t_bfi, 'raw_db.pf_manager_factor_bfi_by_category_group', );
  366. // 有效因子中 R2 最大的因子存 xxx_max_r2
  367. chg_columns_for_mysql(t_max_r2, 'manager_id');
  368. save_and_sync(t_max_r2, 'raw_db.pf_manager_factor_bfi_max_r2', );
  369. } catch (ex) {
  370. //TODO: Log errors
  371. rt += ex + '\n';
  372. }
  373. i += batch_size
  374. } while (i < max_cnt);
  375. return rt;
  376. }