mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-11-29 08:33:07 +00:00
Improve wording for list-exchanges command
This commit is contained in:
@@ -56,11 +56,11 @@ def start_list_exchanges(args: Dict[str, Any]) -> None:
|
|||||||
return result
|
return result
|
||||||
|
|
||||||
if args["list_exchanges_all"]:
|
if args["list_exchanges_all"]:
|
||||||
print("All exchanges supported by the ccxt library:")
|
|
||||||
exchanges = [build_entry(e, True) for e in exchanges]
|
exchanges = [build_entry(e, True) for e in exchanges]
|
||||||
|
print(f"All exchanges supported by the ccxt library ({len(exchanges)} exchanges):")
|
||||||
else:
|
else:
|
||||||
print("Exchanges available for Freqtrade:")
|
|
||||||
exchanges = [build_entry(e, False) for e in exchanges if e["valid"] is not False]
|
exchanges = [build_entry(e, False) for e in exchanges if e["valid"] is not False]
|
||||||
|
print(f"Exchanges available for Freqtrade ({len(exchanges)} exchanges):")
|
||||||
|
|
||||||
print(
|
print(
|
||||||
tabulate(
|
tabulate(
|
||||||
|
|||||||
Reference in New Issue
Block a user