From 37661d91ebaf538be0e20155edd4e84c71d5a3f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20S=C3=A1nchez?= Date: Fri, 12 Sep 2025 09:51:12 -0300 Subject: [PATCH] version number --- main.py | 2 +- trader.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index ec4c182..bf83099 100644 --- a/main.py +++ b/main.py @@ -18,7 +18,7 @@ import exchange_wrapper import trader -version = "2025.09.10" +version = "2025.09.11" ''' Color definitions. If you want to change them, check the reference at https://en.wikipedia.org/wiki/ANSI_escape_code#Colors diff --git a/trader.py b/trader.py index 63de156..429d0f5 100755 --- a/trader.py +++ b/trader.py @@ -155,7 +155,7 @@ class trader: self.broker.logger.log_this(f"Buying missing {amount_to_buy} {self.base}",1,self.status.get_pair()) self.broker.new_market_order(self.status.get_pair(),amount_to_buy,"buy",amount_in_base=True) time.sleep(self.broker.get_wait_time()*2) - #Re-quering for the amount of base currency on the exchange + #Re-querying for the amount of base currency on the exchange free_base = self.fetch_free_base() if free_base is None: self.broker.logger.log_this("Can't fetch the amount of base at the exchange",1,self.status.get_pair())