コード例 #1
0
 def test_cancel_order(self):
     upbit = Upbitpy(self.KEY, self.SECRET)
     uuid = self.__do_temp_order(upbit)
     self.assertIsNotNone(uuid)
     ret = upbit.cancel_order(uuid)
     self.assertIsNotNone(ret)
     self.assertNotEqual(len(ret), 0)
     logging.info(ret)
コード例 #2
0
ファイル: tradingbot.py プロジェクト: hzybzy/upbitwspy
 def test_cancel_order(self):
     upbit = Upbitpy(self.KEY, self.SECRET)
     uuid = self.__do_temp_order(upbit)
     ret = upbit.cancel_order(uuid)
     logging.info(ret)