fix new-config
This commit is contained in:
		| @@ -59,7 +59,7 @@ $ freqtrade new-config --config config_binance.json | ||||
| ? Do you want to enable Dry-run (simulated trades)?  Yes | ||||
| ? Please insert your stake currency: BTC | ||||
| ? Please insert your stake amount: 0.05 | ||||
| ? Please insert max_open_trades (Integer or 'unlimited'): 3 | ||||
| ? Please insert max_open_trades (Integer or -1 for unlimited open trades): 3 | ||||
| ? Please insert your desired timeframe (e.g. 5m): 5m | ||||
| ? Please insert your display Currency (for reporting): USD | ||||
| ? Select exchange  binance | ||||
|   | ||||
| @@ -76,12 +76,9 @@ def ask_user_config() -> Dict[str, Any]: | ||||
|         { | ||||
|             "type": "text", | ||||
|             "name": "max_open_trades", | ||||
|             "message": f"Please insert max_open_trades (Integer or '{UNLIMITED_STAKE_AMOUNT}'):", | ||||
|             "message": "Please insert max_open_trades (Integer or -1 for unlimited open trades):", | ||||
|             "default": "3", | ||||
|             "validate": lambda val: val == UNLIMITED_STAKE_AMOUNT or validate_is_int(val), | ||||
|             "filter": lambda val: '"' + UNLIMITED_STAKE_AMOUNT + '"' | ||||
|             if val == UNLIMITED_STAKE_AMOUNT | ||||
|             else val | ||||
|             "validate": lambda val: validate_is_int(val) | ||||
|         }, | ||||
|         { | ||||
|             "type": "select", | ||||
|   | ||||
		Reference in New Issue
	
	Block a user