2025.07.11

This commit is contained in:
Nicolás Sánchez 2025-07-11 00:16:14 -03:00
parent e5faaaacad
commit 49a65ed685
4 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,6 @@
2025.07.11:
. Default "check_slippage" value now False.
2025.06.04: 2025.06.04:
. Added "base_add_calculation" endpoint: Calculates how many safety orders can be added with the amount of base currency available on the exchange. . Added "base_add_calculation" endpoint: Calculates how many safety orders can be added with the amount of base currency available on the exchange.

View File

@ -26,7 +26,7 @@ class ConfigHandler:
"tp_mode": 3, "tp_mode": 3,
"tp_level": 1.025, "tp_level": 1.025,
"tp_table": [], "tp_table": [],
"check_slippage": True, "check_slippage": False,
"programmed_stop": False, "programmed_stop": False,
"programmed_stop_time": 0, "programmed_stop_time": 0,
"boosted_deals_range": 4, "boosted_deals_range": 4,

View File

@ -16,7 +16,7 @@ import exchange_wrapper
import trader import trader
version = "2025.06.04" version = "2025.07.11"
''' '''
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

View File

@ -1100,6 +1100,7 @@ class trader:
self.status.save_to_file(is_backup=True) self.status.save_to_file(is_backup=True)
self.restart = True self.restart = True
return 1 return 1
#else: check if the order is partially filled. If so, add the amounts to amount_of_quote and amount_of_base and update the take profit order.
#Render status line(s) #Render status line(s)
self.status.set_status_string(self.generate_status_strings()) self.status.set_status_string(self.generate_status_strings())