2025.07.11
This commit is contained in:
parent
e5faaaacad
commit
49a65ed685
|
|
@ -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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
|
|
|
||||||
2
main.py
2
main.py
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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())
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue