| | |
| | | @return: |
| | | """ |
| | | |
| | | def OnLimitUpActiveBuy(self, code, huaxin_timestamp, buy_no): |
| | | def OnLimitUpActiveBuy(self, code, transaction_data): |
| | | """ |
| | | 涨停主动买触发 |
| | | @param code: |
| | | @param huaxin_timestamp: |
| | | @param buy_no: |
| | | @param transaction_data: 成交数据 |
| | | @return: |
| | | """ |
| | | |
| | |
| | | # cls.__callback.OnTradeSingle(code, 0, cls.TYPE_ACTIVE, cls.__latest_sell_active_deal_data_dict[code]) |
| | | |
| | | @classmethod |
| | | def set_limit_up_active_buy(cls, code, huaxin_timestamp, buy_no): |
| | | cls.__callback.OnLimitUpActiveBuy(code, huaxin_timestamp, buy_no) |
| | | def set_limit_up_active_buy(cls, code, transaction_datas): |
| | | if transaction_datas: |
| | | cls.__callback.OnLimitUpActiveBuy(code, transaction_datas) |
| | | |
| | | @classmethod |
| | | def get_valid_trade_single(cls, code, latest_time_with_ms): |