mns-scheduler 1.1.2.1__py3-none-any.whl → 1.1.2.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mns-scheduler might be problematic. Click here for more details.
- mns_scheduler/backup/data/__init__.py +7 -0
- mns_scheduler/backup/data/collection_move.py +53 -0
- mns_scheduler/backup/data/sync_data_to_local.py +55 -0
- mns_scheduler/backup/data/sync_remote_by_str_day.py +33 -0
- mns_scheduler/concept/ths/update_concept_info/sync_one_symbol_all_concepts_api.py +1 -1
- mns_scheduler/k_line/clean/daily/daily_k_line_service.py +6 -0
- mns_scheduler/k_line/clean/week_month/sub_new_week_month_k_line_service.py +68 -16
- mns_scheduler/k_line/test/k_line_info_clean_his_data.py +3 -2
- {mns_scheduler-1.1.2.1.dist-info → mns_scheduler-1.1.2.3.dist-info}/METADATA +1 -1
- {mns_scheduler-1.1.2.1.dist-info → mns_scheduler-1.1.2.3.dist-info}/RECORD +12 -8
- {mns_scheduler-1.1.2.1.dist-info → mns_scheduler-1.1.2.3.dist-info}/WHEEL +0 -0
- {mns_scheduler-1.1.2.1.dist-info → mns_scheduler-1.1.2.3.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import sys
|
|
2
|
+
import os
|
|
3
|
+
|
|
4
|
+
file_path = os.path.abspath(__file__)
|
|
5
|
+
end = file_path.index('mns') + 16
|
|
6
|
+
project_path = file_path[0:end]
|
|
7
|
+
sys.path.append(project_path)
|
|
8
|
+
from loguru import logger
|
|
9
|
+
|
|
10
|
+
db_name_list = [
|
|
11
|
+
# 'company_info', 'company_info_base', 'company_info_his', 'company_info_hk', 'de_list_stock',
|
|
12
|
+
# 'em_stock_asset_liability',
|
|
13
|
+
# 'em_stock_profit',
|
|
14
|
+
# 'k_line_info',
|
|
15
|
+
'kpl_best_choose_daily', 'kpl_best_choose_his', 'kpl_best_choose_index',
|
|
16
|
+
'kpl_best_choose_index_detail',
|
|
17
|
+
'kpl_his_quotes', 'recent_hot_stocks', 'self_black_stock', 'self_choose_plate', 'self_choose_stock', 'sse_info_uid',
|
|
18
|
+
'stock_gdfx_free_top_10', 'stock_high_chg_pool', 'stock_interactive_question', 'stock_qfq_daily',
|
|
19
|
+
'stock_qfq_monthly', 'stock_qfq_weekly', 'stock_zt_pool', 'stock_zt_pool_five', 'stock_zb_pool', 'sw_industry',
|
|
20
|
+
'ths_concept_list', 'ths_stock_concept_detail', 'ths_stock_concept_detail_app', 'ths_zt_pool',
|
|
21
|
+
'today_new_concept_list',
|
|
22
|
+
'trade_date_list', 'realtime_quotes_now_zt_new', 'realtime_quotes_now_open', 'realtime_quotes_now_zt_new_kc_open']
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def db_export(db, col):
|
|
26
|
+
cmd = 'F:/mongo/bin/mongodump.exe --host ' + db + ' -d patience -c ' + col + ' -o D:/back'
|
|
27
|
+
os.system(cmd)
|
|
28
|
+
logger.info("export finished:{}", col)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def db_import(db, col):
|
|
32
|
+
cmd = 'F:/mongo/bin/mongorestore.exe --host ' + db + ' -d patience -c ' + col + ' D:/back/patience/' + col + '.bson'
|
|
33
|
+
os.system(cmd)
|
|
34
|
+
|
|
35
|
+
path = 'D:\\back\\patience\\' + col + '.bson'
|
|
36
|
+
cmd_del = 'del /F /S /Q ' + path
|
|
37
|
+
os.system(cmd_del)
|
|
38
|
+
|
|
39
|
+
logger.info("import finished:{}", col)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
def collection_to_local():
|
|
43
|
+
for db_name in db_name_list:
|
|
44
|
+
try:
|
|
45
|
+
db_export('127.0.0.1:27017', db_name)
|
|
46
|
+
db_import('192.168.1.6:27017', db_name)
|
|
47
|
+
logger.info("同步到集合:{}", db_name)
|
|
48
|
+
except BaseException as e:
|
|
49
|
+
logger.error("出现异常:{}", e)
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
if __name__ == '__main__':
|
|
53
|
+
collection_to_local()
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import sys
|
|
2
|
+
import os
|
|
3
|
+
|
|
4
|
+
file_path = os.path.abspath(__file__)
|
|
5
|
+
end = file_path.index('mns') + 16
|
|
6
|
+
project_path = file_path[0:end]
|
|
7
|
+
sys.path.append(project_path)
|
|
8
|
+
from mns_common.db.MongodbUtil import MongodbUtil
|
|
9
|
+
from loguru import logger
|
|
10
|
+
|
|
11
|
+
mongodb_util = MongodbUtil('27017')
|
|
12
|
+
|
|
13
|
+
from mns_common.db.MongodbUtilLocal import MongodbUtil as MongodbUtilLocal
|
|
14
|
+
|
|
15
|
+
mongodbUtilLocal = MongodbUtilLocal('27017')
|
|
16
|
+
|
|
17
|
+
db_name_list = [
|
|
18
|
+
# 'company_info', 'company_info_base', 'company_info_his', 'company_info_hk', 'de_list_stock',
|
|
19
|
+
# 'em_stock_asset_liability',
|
|
20
|
+
# 'em_stock_profit',
|
|
21
|
+
# 'k_line_info',
|
|
22
|
+
# 'kpl_best_choose_daily',
|
|
23
|
+
# 'kpl_best_choose_his',
|
|
24
|
+
# 'kpl_best_choose_index',
|
|
25
|
+
# 'kpl_best_choose_index_detail',
|
|
26
|
+
# 'kpl_his_quotes',
|
|
27
|
+
# 'stock_qfq_daily',
|
|
28
|
+
# 'stock_qfq_monthly',
|
|
29
|
+
# 'stock_qfq_weekly',
|
|
30
|
+
# 'stock_gdfx_free_top_10',
|
|
31
|
+
# 'recent_hot_stocks',
|
|
32
|
+
# 'self_black_stock',
|
|
33
|
+
# 'self_choose_plate', 'self_choose_stock', 'sse_info_uid',
|
|
34
|
+
# 'stock_high_chg_pool', 'stock_interactive_question',
|
|
35
|
+
# 'stock_zt_pool', 'stock_zt_pool_five', 'stock_zb_pool', 'sw_industry',
|
|
36
|
+
# 'ths_concept_list', 'ths_stock_concept_detail','ths_zt_pool',
|
|
37
|
+
# 'today_new_concept_list',
|
|
38
|
+
# 'trade_date_list',
|
|
39
|
+
# 'ths_stock_concept_detail_app',
|
|
40
|
+
"stock_zt_pool"
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
def sync_collection_to_local():
|
|
45
|
+
for db_name in db_name_list:
|
|
46
|
+
try:
|
|
47
|
+
df_data = mongodb_util.find_all_data(db_name)
|
|
48
|
+
mongodbUtilLocal.save_mongo(df_data, db_name)
|
|
49
|
+
logger.info("同步到集合:{}", db_name)
|
|
50
|
+
except BaseException as e:
|
|
51
|
+
logger.error("出现异常:{}", e)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
if __name__ == '__main__':
|
|
55
|
+
sync_collection_to_local()
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import sys
|
|
2
|
+
import os
|
|
3
|
+
|
|
4
|
+
file_path = os.path.abspath(__file__)
|
|
5
|
+
end = file_path.index('mns') + 16
|
|
6
|
+
project_path = file_path[0:end]
|
|
7
|
+
sys.path.append(project_path)
|
|
8
|
+
from mns_common.db.MongodbUtil import MongodbUtil
|
|
9
|
+
from loguru import logger
|
|
10
|
+
|
|
11
|
+
mongodb_util = MongodbUtil('27017')
|
|
12
|
+
from mns_common.db.MongodbUtilLocal import MongodbUtil as MongodbUtilLocal
|
|
13
|
+
|
|
14
|
+
mongodbUtilLocal = MongodbUtilLocal('27017')
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
def sync_remote_open_data(str_day):
|
|
18
|
+
query_remote = {"str_day": str_day}
|
|
19
|
+
realtime_quotes_now_open_df = mongodb_util.find_query_data('realtime_quotes_now_open', query_remote)
|
|
20
|
+
mongodbUtilLocal.insert_mongo(realtime_quotes_now_open_df, 'realtime_quotes_now_open')
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
if __name__ == '__main__':
|
|
24
|
+
query = {'$and': [{"_id": {"$gte": "2022-03-16"}},
|
|
25
|
+
{"_id": {"$lte": "2024-06-28"}}]}
|
|
26
|
+
trade_date_list = mongodb_util.find_query_data('trade_date_list', query)
|
|
27
|
+
for trade_one in trade_date_list.itertuples():
|
|
28
|
+
try:
|
|
29
|
+
sync_str_day = trade_one.trade_date
|
|
30
|
+
sync_remote_open_data(sync_str_day)
|
|
31
|
+
logger.info('str_day:{}', sync_str_day)
|
|
32
|
+
except BaseException as e:
|
|
33
|
+
logger.error("同步远程数据异常:{}", e)
|
|
@@ -10,6 +10,7 @@ import mns_common.utils.date_handle_util as date_handle_util
|
|
|
10
10
|
import mns_scheduler.k_line.hot_stocks.recent_hot_stocks_clean_service as recent_hot_stocks_clean_service
|
|
11
11
|
import mns_scheduler.k_line.clean.daily.daily_k_line_clean_common_service as daily_k_line_clean_common_service
|
|
12
12
|
from mns_common.component.classify.symbol_classify_param import stock_type_classify_param
|
|
13
|
+
import mns_scheduler.k_line.clean.week_month.sub_new_week_month_k_line_service as sub_new_week_month_k_line_service
|
|
13
14
|
|
|
14
15
|
mongodb_util = MongodbUtil('27017')
|
|
15
16
|
# 普通股日线查询数据 60
|
|
@@ -62,6 +63,11 @@ def handle_day_line_sub_new(k_line_info, str_day, symbol, deal_days):
|
|
|
62
63
|
k_line_info = daily_k_line_clean_common_service.calculate_open_chg(stock_qfq_daily, k_line_info)
|
|
63
64
|
# 计算 昨日最高点到开盘涨幅差值 and # 昨日最高点到当日收盘涨幅之间的差值 and # 昨日收盘到当日开盘涨幅之间的差值
|
|
64
65
|
k_line_info = daily_k_line_clean_common_service.calculate_chg_diff_value(k_line_info)
|
|
66
|
+
# 计算 月线
|
|
67
|
+
k_line_info = sub_new_week_month_k_line_service.handle_month_line(k_line_info, stock_qfq_daily, deal_days)
|
|
68
|
+
# 计算周线
|
|
69
|
+
k_line_info = sub_new_week_month_k_line_service.handle_week_line(k_line_info, stock_qfq_daily, deal_days)
|
|
70
|
+
|
|
65
71
|
# 排除最近有三板以上的股票 todo
|
|
66
72
|
# 计算最近热门大涨的股票
|
|
67
73
|
recent_hot_stocks_clean_service.calculate_recent_hot_stocks(stock_qfq_daily, symbol, str_day)
|
|
@@ -9,39 +9,91 @@ sys.path.append(project_path)
|
|
|
9
9
|
# 每月最大交易天数
|
|
10
10
|
MAX_TRADE_DAYS_PER_MONTH = 23
|
|
11
11
|
# 每周最大交易天数
|
|
12
|
-
|
|
12
|
+
MAX_TRADE_DAYS_PER_WEEK = 5
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
def
|
|
16
|
-
|
|
15
|
+
def handle_month_line(k_line_info, stock_qfq_daily, deal_days):
|
|
16
|
+
# 上市2-23天
|
|
17
|
+
if 1 < deal_days <= MAX_TRADE_DAYS_PER_MONTH:
|
|
17
18
|
month_01 = round(sum(stock_qfq_daily['chg']), 2)
|
|
18
19
|
k_line_info['sum_month'] = month_01
|
|
19
20
|
k_line_info['month_num'] = 1
|
|
20
21
|
k_line_info['month01'] = month_01
|
|
21
|
-
|
|
22
|
-
|
|
22
|
+
k_line_info['month01_date'] = list(stock_qfq_daily.iloc[0:1]['date'])[0]
|
|
23
|
+
# 上市23-23*2天
|
|
24
|
+
elif (deal_days > MAX_TRADE_DAYS_PER_MONTH) \
|
|
25
|
+
and (deal_days <= MAX_TRADE_DAYS_PER_MONTH * 2):
|
|
23
26
|
stock_qfq_daily_month_01 = stock_qfq_daily.iloc[0:MAX_TRADE_DAYS_PER_MONTH]
|
|
24
27
|
month_01 = round(sum(stock_qfq_daily_month_01['chg']), 2)
|
|
25
|
-
|
|
28
|
+
k_line_length = stock_qfq_daily.shape[0]
|
|
29
|
+
stock_qfq_daily_month_02 = stock_qfq_daily.iloc[MAX_TRADE_DAYS_PER_MONTH: k_line_length]
|
|
26
30
|
month_02 = round(sum(stock_qfq_daily_month_02['chg']), 2)
|
|
27
31
|
k_line_info['sum_month'] = round(month_01 + month_02, 2)
|
|
28
32
|
k_line_info['month_num'] = 2
|
|
29
33
|
k_line_info['month01'] = month_01
|
|
30
|
-
k_line_info['
|
|
31
|
-
|
|
34
|
+
k_line_info['month02'] = month_02
|
|
35
|
+
k_line_info['month01_date'] = list(stock_qfq_daily_month_01.iloc[0:1]['date'])[0]
|
|
36
|
+
k_line_info['month02_date'] = list(stock_qfq_daily_month_02.iloc[0:1]['date'])[0]
|
|
37
|
+
elif deal_days > MAX_TRADE_DAYS_PER_MONTH * 2:
|
|
32
38
|
stock_qfq_daily_month_01 = stock_qfq_daily.iloc[0:MAX_TRADE_DAYS_PER_MONTH]
|
|
33
39
|
month_01 = round(sum(stock_qfq_daily_month_01['chg']), 2)
|
|
34
|
-
stock_qfq_daily_month_02 = stock_qfq_daily.iloc[MAX_TRADE_DAYS_PER_MONTH
|
|
40
|
+
stock_qfq_daily_month_02 = stock_qfq_daily.iloc[MAX_TRADE_DAYS_PER_MONTH:MAX_TRADE_DAYS_PER_MONTH * 2]
|
|
35
41
|
month_02 = round(sum(stock_qfq_daily_month_02['chg']), 2)
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
week_sum = round(sum(stock_qfq_daily_week_sum['chg']), 2)
|
|
40
|
-
|
|
42
|
+
k_line_info['month01_date'] = list(stock_qfq_daily_month_01.iloc[0:1]['date'])[0]
|
|
43
|
+
k_line_info['month02_date'] = list(stock_qfq_daily_month_02.iloc[0:1]['date'])[0]
|
|
41
44
|
k_line_info['sum_month'] = round(month_01 + month_02, 2)
|
|
42
45
|
k_line_info['month_num'] = 2
|
|
43
46
|
k_line_info['month01'] = month_01
|
|
44
|
-
k_line_info['
|
|
47
|
+
k_line_info['month02'] = month_02
|
|
48
|
+
|
|
49
|
+
return k_line_info
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
def handle_week_line(k_line_info, stock_qfq_daily, deal_days):
|
|
53
|
+
if 1 < deal_days <= MAX_TRADE_DAYS_PER_WEEK:
|
|
54
|
+
week_01 = round(sum(stock_qfq_daily['chg']), 2)
|
|
55
|
+
k_line_info['sum_week'] = week_01
|
|
56
|
+
k_line_info['week_num'] = 1
|
|
57
|
+
k_line_info['week01'] = week_01
|
|
58
|
+
k_line_info['week_last_day'] = list(stock_qfq_daily.iloc[0:1]['date'])[0]
|
|
59
|
+
elif MAX_TRADE_DAYS_PER_WEEK < deal_days <= MAX_TRADE_DAYS_PER_WEEK * 2:
|
|
60
|
+
stock_qfq_daily_week_01 = stock_qfq_daily.iloc[0:MAX_TRADE_DAYS_PER_WEEK]
|
|
61
|
+
stock_qfq_daily_week_02 = stock_qfq_daily.iloc[MAX_TRADE_DAYS_PER_WEEK:MAX_TRADE_DAYS_PER_WEEK * 2]
|
|
62
|
+
week_01 = round(sum(stock_qfq_daily_week_01['chg']), 2)
|
|
63
|
+
week_02 = round(sum(stock_qfq_daily_week_02['chg']), 2)
|
|
64
|
+
k_line_info['sum_week'] = week_01 + week_02
|
|
65
|
+
k_line_info['week_num'] = 2
|
|
66
|
+
k_line_info['week01'] = week_01
|
|
67
|
+
k_line_info['week02'] = week_02
|
|
68
|
+
k_line_info['week_last_day'] = list(stock_qfq_daily_week_01.iloc[0:1]['date'])[0]
|
|
69
|
+
elif MAX_TRADE_DAYS_PER_WEEK < deal_days <= MAX_TRADE_DAYS_PER_WEEK * 3:
|
|
70
|
+
stock_qfq_daily_week_01 = stock_qfq_daily.iloc[0:MAX_TRADE_DAYS_PER_WEEK]
|
|
71
|
+
stock_qfq_daily_week_02 = stock_qfq_daily.iloc[MAX_TRADE_DAYS_PER_WEEK: MAX_TRADE_DAYS_PER_WEEK * 2]
|
|
72
|
+
stock_qfq_daily_week_03 = stock_qfq_daily.iloc[MAX_TRADE_DAYS_PER_WEEK * 2: MAX_TRADE_DAYS_PER_WEEK * 3]
|
|
73
|
+
week_01 = round(sum(stock_qfq_daily_week_01['chg']), 2)
|
|
74
|
+
week_02 = round(sum(stock_qfq_daily_week_02['chg']), 2)
|
|
75
|
+
week_03 = round(sum(stock_qfq_daily_week_03['chg']), 2)
|
|
76
|
+
k_line_info['sum_week'] = week_01 + week_02 + week_03
|
|
77
|
+
k_line_info['week_num'] = 3
|
|
78
|
+
k_line_info['week01'] = week_01
|
|
79
|
+
k_line_info['week02'] = week_02
|
|
80
|
+
k_line_info['week03'] = week_03
|
|
81
|
+
k_line_info['week_last_day'] = list(stock_qfq_daily_week_01.iloc[0:1]['date'])[0]
|
|
45
82
|
|
|
46
|
-
|
|
83
|
+
elif MAX_TRADE_DAYS_PER_WEEK * 3 < deal_days:
|
|
84
|
+
stock_qfq_daily_week_01 = stock_qfq_daily.iloc[0:MAX_TRADE_DAYS_PER_WEEK]
|
|
85
|
+
stock_qfq_daily_week_02 = stock_qfq_daily.iloc[MAX_TRADE_DAYS_PER_WEEK:MAX_TRADE_DAYS_PER_WEEK * 2]
|
|
86
|
+
stock_qfq_daily_week_03 = stock_qfq_daily.iloc[MAX_TRADE_DAYS_PER_WEEK * 2: MAX_TRADE_DAYS_PER_WEEK * 3]
|
|
87
|
+
stock_qfq_daily_week_04 = stock_qfq_daily.iloc[MAX_TRADE_DAYS_PER_WEEK * 3: MAX_TRADE_DAYS_PER_WEEK * 4]
|
|
88
|
+
week_01 = round(sum(stock_qfq_daily_week_01['chg']), 2)
|
|
89
|
+
week_02 = round(sum(stock_qfq_daily_week_02['chg']), 2)
|
|
90
|
+
week_03 = round(sum(stock_qfq_daily_week_03['chg']), 2)
|
|
91
|
+
week_04 = round(sum(stock_qfq_daily_week_04['chg']), 2)
|
|
92
|
+
k_line_info['sum_week'] = week_01 + week_02 + week_03 + week_04
|
|
93
|
+
k_line_info['week_num'] = 4
|
|
94
|
+
k_line_info['week01'] = week_01
|
|
95
|
+
k_line_info['week02'] = week_02
|
|
96
|
+
k_line_info['week03'] = week_03
|
|
97
|
+
k_line_info['week04'] = week_04
|
|
98
|
+
k_line_info['week_last_day'] = stock_qfq_daily_week_01.iloc[0:1]['date']
|
|
47
99
|
return k_line_info
|
|
@@ -25,5 +25,6 @@ def clean_history_data():
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
if __name__ == '__main__':
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
# 001389 001359
|
|
29
|
+
k_line_info_clean_task.sync_k_line_info('2024-05-30', ['001389'])
|
|
30
|
+
# clean_history_data()
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
mns_scheduler/__init__.py,sha256=Tyvi_iQlv3jz59EdH67Mycnt9CSixcWPQoJwu55bOq0,165
|
|
2
2
|
mns_scheduler/backup/__init__.py,sha256=wEg73KlZo-dU0yKGwpA1C2y6LZm4IBb94tNda1tqLeg,163
|
|
3
|
+
mns_scheduler/backup/data/__init__.py,sha256=wEg73KlZo-dU0yKGwpA1C2y6LZm4IBb94tNda1tqLeg,163
|
|
4
|
+
mns_scheduler/backup/data/collection_move.py,sha256=WZN6-312jBbWrNqXCSk-0yTQ60ajUUWAqr2exVfotKU,2005
|
|
5
|
+
mns_scheduler/backup/data/sync_data_to_local.py,sha256=o_kEcBoG8-CjLS7f_cXUBMo_z5MHn2z1WYnaobNDW90,1737
|
|
6
|
+
mns_scheduler/backup/data/sync_remote_by_str_day.py,sha256=uEi-8j5gqRvWoJwIJGAr1Dc7UCmpXAh7q1IMS-Z88Fw,1220
|
|
3
7
|
mns_scheduler/backup/em/__init__.py,sha256=QWBdZwBCvQw8aS4hnL9_pg3U3ZiNLUXzlImyy9WhUcI,163
|
|
4
8
|
mns_scheduler/backup/em/em_new_concept_his_sync.py,sha256=Yqbuz9VE9433o0Z6BvDo5adhj3lK4vmN66XNQBIdC1k,4992
|
|
5
9
|
mns_scheduler/backup/em/em_new_concept_sync_common_api.py,sha256=KnNCf0KXy31GFwF1-wbbkfDM-H7-cEtcVoCwl4QmoVs,7083
|
|
@@ -33,7 +37,7 @@ mns_scheduler/concept/ths/sync_new_index/__init__.py,sha256=QWBdZwBCvQw8aS4hnL9_
|
|
|
33
37
|
mns_scheduler/concept/ths/sync_new_index/sync_ths_concept_new_index_api.py,sha256=9ol2cvxSO2Ot4Z5fmlo9tUPFe6WwsuVX_H9ogtv3QrI,7841
|
|
34
38
|
mns_scheduler/concept/ths/update_concept_info/__init__.py,sha256=QWBdZwBCvQw8aS4hnL9_pg3U3ZiNLUXzlImyy9WhUcI,163
|
|
35
39
|
mns_scheduler/concept/ths/update_concept_info/sync_one_concept_all_symbols_api.py,sha256=wlsr70rcS-uAH6b8NXPbA-wG37saeIQ0FIg8vSSTXQA,1920
|
|
36
|
-
mns_scheduler/concept/ths/update_concept_info/sync_one_symbol_all_concepts_api.py,sha256=
|
|
40
|
+
mns_scheduler/concept/ths/update_concept_info/sync_one_symbol_all_concepts_api.py,sha256=HVqDSBruORebtiliKps2swJo_GNg_8mqT0r9cZX6sj8,8839
|
|
37
41
|
mns_scheduler/db/__init__.py,sha256=1dpcEuWKyblKcpyOss0Iyy_ZS4ZJsh8x8GoMAv3TiS8,193
|
|
38
42
|
mns_scheduler/db/col_move_service.py,sha256=VSGJROyErfytjGzSlhyTdH6z3ayHG5nFfJk8qjdpJhE,4057
|
|
39
43
|
mns_scheduler/db/db_status.py,sha256=e5eW5ZSm5J7tHvmxxhFmFdbZb2_oB_SAcdcFqc4KDmw,733
|
|
@@ -58,17 +62,17 @@ mns_scheduler/k_line/clean/k_line_info_clean_impl.py,sha256=2GgRc9Nb9wXMueoZhl9e
|
|
|
58
62
|
mns_scheduler/k_line/clean/k_line_info_clean_task.py,sha256=ey6xTXAxxXh8_8cPzsWmUtVmG8Sd7jXFbpRpTrFrLDo,7622
|
|
59
63
|
mns_scheduler/k_line/clean/daily/__init__.py,sha256=wEg73KlZo-dU0yKGwpA1C2y6LZm4IBb94tNda1tqLeg,163
|
|
60
64
|
mns_scheduler/k_line/clean/daily/daily_k_line_clean_common_service.py,sha256=j00d0LFZIjl5iabYnDOvU-aGRHgUI8mVaH__RmR0ZM8,18385
|
|
61
|
-
mns_scheduler/k_line/clean/daily/daily_k_line_service.py,sha256=
|
|
65
|
+
mns_scheduler/k_line/clean/daily/daily_k_line_service.py,sha256=GOXtxZp6HVmqXQOpAsbiEx1lNo2z5p_zMwBqG42hzpQ,6654
|
|
62
66
|
mns_scheduler/k_line/clean/week_month/__init__.py,sha256=wEg73KlZo-dU0yKGwpA1C2y6LZm4IBb94tNda1tqLeg,163
|
|
63
67
|
mns_scheduler/k_line/clean/week_month/normal_week_month_k_line_service.py,sha256=8IDPddhbaV7n1m56ZlR--iJ1cvIhbv_iNCkq5eXNSOE,4862
|
|
64
|
-
mns_scheduler/k_line/clean/week_month/sub_new_week_month_k_line_service.py,sha256=
|
|
68
|
+
mns_scheduler/k_line/clean/week_month/sub_new_week_month_k_line_service.py,sha256=0XyurQkxG6kRxuqmQ-8z58Htma-uCGmSeYG39CfY0zI,5398
|
|
65
69
|
mns_scheduler/k_line/hot_stocks/__init__.py,sha256=wEg73KlZo-dU0yKGwpA1C2y6LZm4IBb94tNda1tqLeg,163
|
|
66
70
|
mns_scheduler/k_line/hot_stocks/recent_hot_stocks_clean_service.py,sha256=whm-pYhAd_7OKurIw2cteBwWse5vVXS88lcrTbbcSaE,2628
|
|
67
71
|
mns_scheduler/k_line/sync/__init__.py,sha256=ffZXFCLFdIwOsbxnw__u1MbQYh9yz7Bs8UMP6VF0X2M,161
|
|
68
72
|
mns_scheduler/k_line/sync/bfq_k_line_sync.py,sha256=i2NNdp4uVa-kiqQvOaY6odd8-DmQtlejeMXeVklKOIs,4067
|
|
69
73
|
mns_scheduler/k_line/sync/daily_week_month_line_sync.py,sha256=SHAvMkDW-2TKEC4wWkMdiOQWa4Ktc0Umm59OlceK1dg,5795
|
|
70
74
|
mns_scheduler/k_line/test/__init__.py,sha256=wEg73KlZo-dU0yKGwpA1C2y6LZm4IBb94tNda1tqLeg,163
|
|
71
|
-
mns_scheduler/k_line/test/k_line_info_clean_his_data.py,sha256=
|
|
75
|
+
mns_scheduler/k_line/test/k_line_info_clean_his_data.py,sha256=NlVaO-RLlciXhFbqTk1BbBi7T0qHMdD83hIdC8afebo,1171
|
|
72
76
|
mns_scheduler/kpl/__init__.py,sha256=QWBdZwBCvQw8aS4hnL9_pg3U3ZiNLUXzlImyy9WhUcI,163
|
|
73
77
|
mns_scheduler/kpl/selection/__init__.py,sha256=QWBdZwBCvQw8aS4hnL9_pg3U3ZiNLUXzlImyy9WhUcI,163
|
|
74
78
|
mns_scheduler/kpl/selection/index/__init__.py,sha256=QWBdZwBCvQw8aS4hnL9_pg3U3ZiNLUXzlImyy9WhUcI,163
|
|
@@ -124,7 +128,7 @@ mns_scheduler/zt/zt_pool/em_zt_pool_sync_api.py,sha256=wUtc9kL6ICyz8Os1ix_o-ZERd
|
|
|
124
128
|
mns_scheduler/zt/zt_pool/ths_zt_pool_sync_api.py,sha256=Xx_R_WujCtV_p4k1eKaYPshQVpErtegub2OyIOBxzUw,10338
|
|
125
129
|
mns_scheduler/zz_task/__init__.py,sha256=QWBdZwBCvQw8aS4hnL9_pg3U3ZiNLUXzlImyy9WhUcI,163
|
|
126
130
|
mns_scheduler/zz_task/data_sync_task.py,sha256=bILPyMR0LEtCxdjEonplUOnGCYHhI65pFrzQWdf8WqI,18050
|
|
127
|
-
mns_scheduler-1.1.2.
|
|
128
|
-
mns_scheduler-1.1.2.
|
|
129
|
-
mns_scheduler-1.1.2.
|
|
130
|
-
mns_scheduler-1.1.2.
|
|
131
|
+
mns_scheduler-1.1.2.3.dist-info/METADATA,sha256=JQo5DqOZfaNUuIEEsPMJgZ4_3c9B3yfVdpDX04yy0JI,64
|
|
132
|
+
mns_scheduler-1.1.2.3.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
133
|
+
mns_scheduler-1.1.2.3.dist-info/top_level.txt,sha256=PXQDFBGR1pWmsUbH5yiLAh71P5HZODTRED0zJ8CCgOc,14
|
|
134
|
+
mns_scheduler-1.1.2.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|