updated backtesting

This commit is contained in:
Kavinkumar
2022-03-02 13:05:00 +05:30
parent e7bd3c6d80
commit a031216ecc
3 changed files with 59 additions and 36 deletions

View File

@@ -492,7 +492,7 @@ class FreqtradeBot(LoggingMixin):
logger.info('Remaining amount would be too small')
return
if amount > trade.amount:
logger.info("Amount is higher than available.")
logger.info(f"Amount is higher than available. {amount} > {trade.amount}")
return
self.execute_trade_exit(trade, current_rate, sell_reason=SellCheckTuple(
sell_type=SellType.CUSTOM_SELL), sub_trade_amt=amount)