2025.09.01
This commit is contained in:
parent
f5e5f4eb77
commit
a5efd6e992
|
|
@ -17,6 +17,7 @@ logs/gateio.log
|
||||||
logs/kucoin.log
|
logs/kucoin.log
|
||||||
upload_testnet.sh
|
upload_testnet.sh
|
||||||
upload_mainnet.sh
|
upload_mainnet.sh
|
||||||
|
upload_local_testnet.sh
|
||||||
utils/data/binance.db
|
utils/data/binance.db
|
||||||
utils/data/okx.db
|
utils/data/okx.db
|
||||||
utils/data/gateio.db
|
utils/data/gateio.db
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
2025.09.01:
|
||||||
|
. Fixed bug in unwrapped_last_call().
|
||||||
|
|
||||||
2025.08.19:
|
2025.08.19:
|
||||||
. Improved log trimming.
|
. Improved log trimming.
|
||||||
|
|
||||||
|
|
|
||||||
3
main.py
3
main.py
|
|
@ -18,7 +18,7 @@ import exchange_wrapper
|
||||||
import trader
|
import trader
|
||||||
|
|
||||||
|
|
||||||
version = "2025.08.19"
|
version = "2025.09.01"
|
||||||
|
|
||||||
'''
|
'''
|
||||||
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
|
||||||
|
|
@ -1871,7 +1871,6 @@ def unwrapped_last_call(base,quote):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
symbol = f"{base}/{quote}"
|
symbol = f"{base}/{quote}"
|
||||||
if symbol in broker.get_pairs(): #Why was this?
|
|
||||||
for instance in running_traders:
|
for instance in running_traders:
|
||||||
if symbol==instance.config.get_pair():
|
if symbol==instance.config.get_pair():
|
||||||
instance.status.set_stop_when_profit(not instance.status.get_stop_when_profit())
|
instance.status.set_stop_when_profit(not instance.status.get_stop_when_profit())
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue