admin
2025-05-28 591415530c68c82af20e2c658a77de9e78491147
strategy/basic_methods.py
@@ -211,7 +211,7 @@
# 充分交易量公式 用于计算日内涨幅段理论的安全交易量值
def sufficient_volume(current_volume, yesterday_volume, today_growth):
    if today_growth > 0:
        if current_volume > yesterday_volume * 0.8 * today_growth:
        if current_volume > yesterday_volume * 0.5 * today_growth:
            return True
        else:
            return False