コード例 #1
0
ファイル: arbitrator.py プロジェクト: bitbuyercho/bitex
 def process_ask_list(self, ask_list):
     ask_list = get_funded_entries(ask_list, self.crypto_balance, False)
     ask_list = aggregate_orders(ask_list)
     self.order_book_ask_processor.process_order_list(ask_list)
コード例 #2
0
 def process_ask_list(self, ask_list):
     ask_list = get_funded_entries(ask_list, self.crypto_balance, False)
     ask_list = aggregate_orders(ask_list)
     self.order_book_ask_processor.process_order_list(ask_list)
コード例 #3
0
ファイル: arbitrator.py プロジェクト: bitbuyercho/bitex
 def process_bid_list(self, bid_list):
     bid_list = get_funded_entries(bid_list, self.fiat_balance, True)
     bid_list = aggregate_orders(bid_list)
     self.order_book_bid_processor.process_order_list(bid_list)
コード例 #4
0
 def process_bid_list(self, bid_list):
     bid_list = get_funded_entries(bid_list, self.fiat_balance, True)
     bid_list = aggregate_orders(bid_list)
     self.order_book_bid_processor.process_order_list(bid_list)