From 19cec7ea9b7b98f6893f087dc9e507efc6cb677a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20S=C3=A1nchez?= Date: Fri, 25 Oct 2024 12:08:38 -0300 Subject: [PATCH] Modified some strings --- changelog.txt | 3 +++ main.py | 5 ++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/changelog.txt b/changelog.txt index c6e3df8..2dc7119 100755 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,6 @@ +2024.10.25: +. Modified some strings. + 2024.10.20: . Insted of querying the average fill on the initial order, now the initial price is calculated using total_quote/total_base. . Using create_market_buy_order_with_cost with Gate.io (Because there may be a bug when generating simulated market buy orders.) diff --git a/main.py b/main.py index 1c8fbb8..a41edf4 100644 --- a/main.py +++ b/main.py @@ -22,7 +22,7 @@ In case the permissions of the certificate changes, reset them this way: # ll /etc/letsencrypt/ ''' -version = "2024.10.20" +version = "2024.10.25" ''' Color definitions. If you want to change them, check the reference at https://en.wikipedia.org/wiki/ANSI_escape_code#Colors @@ -243,7 +243,7 @@ def main_loop(): #Restart traders that have the restart flag raised and remove traders that have the quit flag raised for x in running_instances: if x.restart and x.config_dict["attempt_restart"]: - broker.logger.log_this(f"Restarting trader...",1,x.pair) + broker.logger.log_this(f"Restarting trader",1,x.pair) restart_pair_no_json(x.base,x.quote) if x.quit: #Here, check if a duster is needed @@ -1671,4 +1671,3 @@ if __name__=="__main__": for m in main_threads: m.start() - #As always... fuck you 3commas!