| | |
| | | # mode: 0-普通交易 1-快速交易 |
| | | def __init__(self, buy_single_index=None, buy_exec_index=-1, buy_compute_index=None, num=0, count=0, |
| | | max_num_set=None, buy_volume_rate=None, sell_info=None, threshold_money=None, mode=0, mode_desc=None, |
| | | at_limit_up=False, first_limit_up_buy=False): |
| | | at_limit_up=False, first_limit_up_buy=False, min_order_no = None): |
| | | self.buy_single_index = buy_single_index |
| | | self.buy_exec_index = buy_exec_index |
| | | self.buy_compute_index = buy_compute_index |
| | |
| | | self.at_limit_up = at_limit_up |
| | | # 是否为首封买 |
| | | self.first_limit_up_buy = first_limit_up_buy |
| | | # 统计批次大单成交的最小订单号 |
| | | self.min_order_no = min_order_no |
| | | |
| | | def get_max_num_set(self): |
| | | if self.max_num_set: |