Fix warning for max_open_trades when edge is enabled
This commit is contained in:
parent
13800701ce
commit
87cbff5d0e
@ -59,7 +59,7 @@ class Edge():
|
|||||||
|
|
||||||
# checking max_open_trades. it should be -1 as with Edge
|
# checking max_open_trades. it should be -1 as with Edge
|
||||||
# the number of trades is determined by position size
|
# the number of trades is determined by position size
|
||||||
if self.config['max_open_trades'] != -1:
|
if self.config['max_open_trades'] != float('inf'):
|
||||||
logger.critical('max_open_trades should be -1 in config !')
|
logger.critical('max_open_trades should be -1 in config !')
|
||||||
|
|
||||||
if self.config['stake_amount'] != constants.UNLIMITED_STAKE_AMOUNT:
|
if self.config['stake_amount'] != constants.UNLIMITED_STAKE_AMOUNT:
|
||||||
|
Loading…
Reference in New Issue
Block a user