Add documentation for days parameter in PerformanceFilter

This commit is contained in:
Matthias
2021-09-18 08:26:48 +02:00
parent d7395e873b
commit 12c12d42df
3 changed files with 17 additions and 3 deletions

View File

@@ -165,6 +165,7 @@ Example to remove the first 10 pairs from the pairlist:
```json
"pairlists": [
// ...
{
"method": "OffsetFilter",
"offset": 10
@@ -190,6 +191,19 @@ Sorts pairs by past trade performance, as follows:
Trade count is used as a tie breaker.
You can use the `days` parameter to only consider performance of the past X days.
Not defining this parameter (or setting it to 0) will use all-time performance.
```json
"pairlists": [
// ...
{
"method": "PerformanceFilter",
"days": 10
}
],
```
!!! Note
`PerformanceFilter` does not support backtesting mode.