| | |
| | | return False, True, f"股价创新高或者逼近前高且30天内有涨停,当日量比({cls.volume_rate_info[code][0]})小于{volume_rate_thresholds[1]}" |
| | | |
| | | if HighIncreaseCodeManager().is_in(code): |
| | | if code in cls.volume_rate_info and cls.volume_rate_info[code][0] < 0.8: |
| | | return False, True, f"5天内3次涨停,量未达到80%({cls.volume_rate_info[code][0]})" |
| | | if code in cls.volume_rate_info and cls.volume_rate_info[code][0] < 0.59: |
| | | return False, True, f"5天内3次涨停,量未达到59%({cls.volume_rate_info[code][0]})" |
| | | msg_list = [] |
| | | if is_in_strong_time: |
| | | msg_list.append("强势10分钟") |