|
@@ -20,13 +20,13 @@ use fundit::dataSaver;
|
|
|
* portfolio 未测试
|
|
|
*
|
|
|
* Example: CalEntityRBSATask('MF', ['MF00003PW1'], 2024.10.14T10:00:00);
|
|
|
- * CalEntityRBSATask('MF', NULL, 2025.01.23);
|
|
|
+ * CalEntityRBSATask('MF', NULL, 2025.02.20);
|
|
|
* CalEntityRBSATask('PF', NULL, 2025.01.23);
|
|
|
*/
|
|
|
def CalEntityRBSATask(entityType, entityIds, updateTime) {
|
|
|
-// entityType = 'PF'
|
|
|
+// entityType = 'MF'
|
|
|
//entityIds = NULL
|
|
|
-//updateTime = 2025.01.10T10:00:00
|
|
|
+//updateTime = 2025.03.21T10:00:00
|
|
|
|
|
|
t_cal = get_entity_list_by_latest_return_updatetime(entityType, entityIds, updateTime, true);
|
|
|
|
|
@@ -35,10 +35,12 @@ def CalEntityRBSATask(entityType, entityIds, updateTime) {
|
|
|
|
|
|
if(t_cal.isVoid() || t_cal.size() == 0) return;
|
|
|
|
|
|
- d_rbsa = get_rbsa_index();
|
|
|
-
|
|
|
// 拿到所有指数ID
|
|
|
- v_index = d_rbsa.values().flatten().distinct();
|
|
|
+ t_asset_index_map = get_asset_type_index_mapping(NULL, NULL, NULL);
|
|
|
+ if(t_asset_index_map.isVoid() || t_asset_index_map.size() == 0) return;
|
|
|
+
|
|
|
+ v_asset = t_asset_index_map.asset_type_id.distinct();
|
|
|
+ v_index = t_asset_index_map.index_id.distinct();
|
|
|
|
|
|
// 因为用来做基准指数的可能是指数、因子、基金等等任何时间序列数据,所以不用填 entity_type
|
|
|
t_index_ret = get_entity_return(NULL, v_index, 'w', t_cal.price_date.min().temporalAdd(-window, 'w'), today(), true);
|
|
@@ -64,12 +66,16 @@ def CalEntityRBSATask(entityType, entityIds, updateTime) {
|
|
|
}
|
|
|
|
|
|
for(entity in t) {
|
|
|
-
|
|
|
+//entity=t[0]
|
|
|
entity_ret = SELECT * FROM t_entity_ret WHERE entity_id = entity.entity_id;
|
|
|
|
|
|
- for(asset_type in d_rbsa.keys()) {
|
|
|
-//asset_type=d_rbsa.keys()[0]
|
|
|
- index_ret = SELECT entity_id, price_date, ret FROM t_index_ret WHERE entity_id IN d_rbsa[asset_type] AND price_date IS NOT NULL;
|
|
|
+ for(asset in v_asset) {
|
|
|
+//asset=v_asset[0]
|
|
|
+ index_ret = SELECT entity_id, price_date, ret
|
|
|
+ FROM t_index_ret r
|
|
|
+ INNER JOIN t_asset_index_map m ON r.entity_id = m.index_id
|
|
|
+ WHERE m.asset_type_id = asset
|
|
|
+ AND r.price_date IS NOT NULL;
|
|
|
|
|
|
// 起始日期是最早更新日期再向前推一个时间窗口
|
|
|
res = cal_entity_RBSA(entityType, entity_ret, index_ret, 'w',
|
|
@@ -80,7 +86,7 @@ def CalEntityRBSATask(entityType, entityIds, updateTime) {
|
|
|
// 每日任务只负责更新最新的rbsa结果
|
|
|
latest_date = (EXEC price_date.max() AS price_date FROM res)[0];
|
|
|
|
|
|
- tb_result.tableInsert(SELECT entity_id, asset_type, index_id, price_date, level, alternative_id, weights
|
|
|
+ tb_result.tableInsert(SELECT entity_id, asset, index_id, price_date, level, alternative_id, weights
|
|
|
FROM res WHERE price_date = latest_date);
|
|
|
|
|
|
}
|
|
@@ -106,11 +112,11 @@ def CalEntityRBSATask(entityType, entityIds, updateTime) {
|
|
|
*
|
|
|
* TODO: max_r2 表在哪里被用到了?应该和基金推荐有关系
|
|
|
*
|
|
|
- * Example: MatchEntityBFITask('PF', 2025.01.01);
|
|
|
+ * Example: MatchEntityBFITask('MF', 2025.02.21);
|
|
|
*/
|
|
|
def MatchEntityBFITask(entityType, date) {
|
|
|
//entityType = 'MF'
|
|
|
-//date = 2025.01.23
|
|
|
+//date = 2025.02.21
|
|
|
|
|
|
rt = '';
|
|
|
|