admin
2025-06-10 72e5e0a0a601aaf26f8363b44c452f5bf1c6d1b7
strategy/basic_methods.py
@@ -210,8 +210,8 @@
# 充分交易量公式 用于计算日内涨幅段理论的安全交易量值
def sufficient_volume(current_volume, yesterday_volume, today_growth):
    if today_growth > 0:
        if current_volume > yesterday_volume * 0.8 * today_growth:
    if today_growth > 0 and round(current_volume / yesterday_volume, 2) >= 0.01:
        if current_volume > yesterday_volume * (today_growth/10) * 0.1:
            return True
        else:
            return False
@@ -259,3 +259,9 @@
    else:
        buying_ratio = 0.01
    return buying_ratio
# 统计有意买股票出现次数函数
def count_willing_buy_times(sec_name):
    willing_buy_times = data_cache.willing_buy_list.count(sec_name)
    return willing_buy_times