| | |
| | | total_deal_num += (total_datas[trade_index]["val"]["num"] - dealing_info[1] // 100) |
| | | limit_up_price = gpcode_manager.get_limit_up_price(code) |
| | | deal_money = int(total_deal_num * float(limit_up_price) * 100) |
| | | if deal_money >= order_position.sell_info[1] * 2 and order_position.sell_info[1] > 500*10000: |
| | | if deal_money >= order_position.sell_info[1] * 2 and order_position.sell_info[1] > 1000*10000: |
| | | return True, f"成交金额:{deal_money}/{order_position.sell_info[1] * 2}" |
| | | return False, "成交金额不满足" |
| | | except Exception as e: |