From 9ff4298475628dff73f0c770c643ffd0f7f2a2c0 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 28 Nov 2024 19:22:08 +0100 Subject: [PATCH] docs: update documentation for expanding pairs This needs quoting otherwise zsh tries to expand the command, causing failures. closes #10996 --- docs/data-download.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/data-download.md b/docs/data-download.md index d84d6b328..559211c2f 100644 --- a/docs/data-download.md +++ b/docs/data-download.md @@ -89,7 +89,7 @@ Common arguments: !!! Tip "Downloading all data for one quote currency" Often, you'll want to download data for all pairs of a specific quote-currency. In such cases, you can use the following shorthand: - `freqtrade download-data --exchange binance --pairs .*/USDT <...>`. The provided "pairs" string will be expanded to contain all active pairs on the exchange. + `freqtrade download-data --exchange binance --pairs ".*/USDT" <...>`. The provided "pairs" string will be expanded to contain all active pairs on the exchange. To also download data for inactive (delisted) pairs, add `--include-inactive-pairs` to the command. !!! Note "Startup period" @@ -116,7 +116,7 @@ freqtrade download-data --exchange binance --pairs ETH/USDT XRP/USDT BTC/USDT or as regex (in this case, to download all active USDT pairs) ```bash -freqtrade download-data --exchange binance --pairs .*/USDT +freqtrade download-data --exchange binance --pairs ".*/USDT" ``` ### Other Notes