From 4a621996827b640e43c62c887dc48070f96245ae Mon Sep 17 00:00:00 2001 From: Robert Davey Date: Wed, 21 Aug 2024 15:26:19 +0100 Subject: [PATCH 1/2] Add clarification for untradeable pairs vs markets --- docs/utils.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/utils.md b/docs/utils.md index 78688a7f7..26c8b06d4 100644 --- a/docs/utils.md +++ b/docs/utils.md @@ -420,6 +420,10 @@ Common arguments: By default, only active pairs/markets are shown. Active pairs/markets are those that can currently be traded on the exchange. The see the list of all pairs/markets (not only the active ones), use the `-a`/`-all` option. +Pairs may be listed as untradeable if: + +* the exchange precisionMode is set to tick size (see https://github.com/ccxt/ccxt/wiki/Manual#precision-mode) +* the smallest tradeable price for the market is very small, i.e. less than `1e-11` (`0.00000000001`) Pairs/markets are sorted by its symbol string in the printed output. From 33614d8ff08b8e9a6e51b09d5f19e8654e94fead Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 21 Aug 2024 19:51:24 +0200 Subject: [PATCH 2/2] docs: Improve wording for untradeable pairs --- docs/utils.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/docs/utils.md b/docs/utils.md index 26c8b06d4..5be380b40 100644 --- a/docs/utils.md +++ b/docs/utils.md @@ -418,12 +418,9 @@ Common arguments: ``` -By default, only active pairs/markets are shown. Active pairs/markets are those that can currently be traded -on the exchange. The see the list of all pairs/markets (not only the active ones), use the `-a`/`-all` option. -Pairs may be listed as untradeable if: - -* the exchange precisionMode is set to tick size (see https://github.com/ccxt/ccxt/wiki/Manual#precision-mode) -* the smallest tradeable price for the market is very small, i.e. less than `1e-11` (`0.00000000001`) +By default, only active pairs/markets are shown. Active pairs/markets are those that can currently be traded on the exchange. +You can use the `-a`/`-all` option to see the list of all pairs/markets, including the inactive ones. +Pairs may be listed as untradeable if the smallest tradeable price for the market is very small, i.e. less than `1e-11` (`0.00000000001`) Pairs/markets are sorted by its symbol string in the printed output.