Modified some strings
This commit is contained in:
parent
a8daf9c8b1
commit
19cec7ea9b
|
|
@ -1,3 +1,6 @@
|
||||||
|
2024.10.25:
|
||||||
|
. Modified some strings.
|
||||||
|
|
||||||
2024.10.20:
|
2024.10.20:
|
||||||
. Insted of querying the average fill on the initial order, now the initial price is calculated using total_quote/total_base.
|
. 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.)
|
. Using create_market_buy_order_with_cost with Gate.io (Because there may be a bug when generating simulated market buy orders.)
|
||||||
|
|
|
||||||
5
main.py
5
main.py
|
|
@ -22,7 +22,7 @@ In case the permissions of the certificate changes, reset them this way:
|
||||||
# ll /etc/letsencrypt/
|
# 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
|
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
|
#Restart traders that have the restart flag raised and remove traders that have the quit flag raised
|
||||||
for x in running_instances:
|
for x in running_instances:
|
||||||
if x.restart and x.config_dict["attempt_restart"]:
|
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)
|
restart_pair_no_json(x.base,x.quote)
|
||||||
if x.quit:
|
if x.quit:
|
||||||
#Here, check if a duster is needed
|
#Here, check if a duster is needed
|
||||||
|
|
@ -1671,4 +1671,3 @@ if __name__=="__main__":
|
||||||
for m in main_threads:
|
for m in main_threads:
|
||||||
m.start()
|
m.start()
|
||||||
|
|
||||||
#As always... fuck you 3commas!
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue