From 46b6545bba281fee209710802c44ed8542bef203 Mon Sep 17 00:00:00 2001 From: Administrator <admin@example.com> Date: 星期四, 28 九月 2023 16:12:22 +0800 Subject: [PATCH] 120天内涨幅过高的不买 --- code_attribute/code_nature_analyse.py | 28 +++++++++++++++++++++++++++- 1 files changed, 27 insertions(+), 1 deletions(-) diff --git a/code_attribute/code_nature_analyse.py b/code_attribute/code_nature_analyse.py index cee4869..a1117dc 100644 --- a/code_attribute/code_nature_analyse.py +++ b/code_attribute/code_nature_analyse.py @@ -133,7 +133,7 @@ # 鏄惁娑ㄥ緱澶珮 -def is_up_too_high(record_datas): +def is_up_too_high_in_10d(record_datas): datas = copy.deepcopy(record_datas) datas.sort(key=lambda x: x["bob"]) datas = datas[-10:] @@ -164,6 +164,32 @@ return False +# 120 澶╁唴鏄惁闀垮緱澶珮 +def is_up_too_high_in_120d(record_datas): + datas = copy.deepcopy(record_datas) + datas.sort(key=lambda x: x["bob"]) + datas = datas[-120:] + today_limit_up_price = round(float(gpcode_manager.get_limit_up_price_by_preprice(datas[-1]["close"])), 2) + max_price = 0 + for data in datas: + if data["high"] > max_price: + max_price = data["high"] + if today_limit_up_price <= max_price: + return False + + # 璁$畻120澶╃殑鍧囦环 + total_amount = 0 + total_volume = 0 + for data in datas: + total_amount += data["amount"] + total_volume += data["volume"] + average_price = round(total_amount / total_volume, 2) + if (today_limit_up_price - average_price) / average_price > 0.3: + return True + else: + return False + + # 鏄惁鏈夋定鍋� def get_first_limit_up_count(datas): datas = copy.deepcopy(datas) -- Gitblit v1.8.0