Administrator
2024-01-16 1128f9b16dbf6d3ff8083cb2a6a5a860c1ada57d
l2_data_util.py
@@ -32,7 +32,7 @@
    price = float(val["price"])
    money = price * val["num"]
    if price > 3.0:
        if money >= 30000:
        if money >= 29900:
            return True
        else:
            return False
@@ -47,7 +47,7 @@
# 获取大资金的金额
def get_big_money_val(limit_up_price):
    if limit_up_price > 3.0:
        return 300 * 10000
        return 299 * 10000
    else:
        max_money = limit_up_price * 10000
        return max_money * 0.95