Update freqtrade/freqtradebot.py use is_open.is_(True)

Co-authored-by: Matthias <xmatthias@outlook.com>
This commit is contained in:
Tho Pham (Alex) 2021-01-26 07:38:25 +07:00 committed by GitHub
parent c22cccb55b
commit 8f529f48da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -200,7 +200,7 @@ class FreqtradeBot(LoggingMixin):
Notify the user when the bot is stopped Notify the user when the bot is stopped
and there are still open trades active. and there are still open trades active.
""" """
open_trades = Trade.get_trades([Trade.is_open == True]).all() open_trades = Trade.get_trades([Trade.is_open.is_(True)]).all()
if len(open_trades) != 0: if len(open_trades) != 0:
msg = { msg = {