From 96a5b6555dd6a2c4f7fc62112d618f7c1d928843 Mon Sep 17 00:00:00 2001 From: gbojen Date: Sat, 10 Apr 2021 14:31:12 +0200 Subject: [PATCH] fix documentation inconsistency fixes freqtrade/freqtrade#4650 --- docs/includes/pairlists.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/includes/pairlists.md b/docs/includes/pairlists.md index d57757bbd..8688494cc 100644 --- a/docs/includes/pairlists.md +++ b/docs/includes/pairlists.md @@ -174,7 +174,7 @@ This filter removes pairs if the average volatility over a `lookback_days` days This filter can be used to narrow down your pairs to a certain volatility or avoid very volatile pairs. In the below example: -If the volatility over the last 10 days is not in the range of 0.20-0.30, remove the pair from the whitelist. The filter is applied every 24h. +If the volatility over the last 10 days is not in the range of 0.05-0.50, remove the pair from the whitelist. The filter is applied every 24h. ```json "pairlists": [ @@ -190,7 +190,7 @@ If the volatility over the last 10 days is not in the range of 0.20-0.30, remove ### Full example of Pairlist Handlers -The below example blacklists `BNB/BTC`, uses `VolumePairList` with `20` assets, sorting pairs by `quoteVolume` and applies both [`PrecisionFilter`](#precisionfilter) and [`PriceFilter`](#price-filter), filtering all assets where 1 price unit is > 1%. Then the `SpreadFilter` is applied and pairs are finally shuffled with the random seed set to some predefined value. +The below example blacklists `BNB/BTC`, uses `VolumePairList` with `20` assets, sorting pairs by `quoteVolume` and applies [`PrecisionFilter`](#precisionfilter) and [`PriceFilter`](#price-filter), filtering all assets where 1 price unit is > 1%. Then the [`SpreadFilter`](#spreadfilter) and [`VolatilityFilter`](#volatilityfilter) is applied and pairs are finally shuffled with the random seed set to some predefined value. ```json "exchange": {