You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Given starting points are ignored if data is already available, downloading only missing data up to today.
61
61
* Use `--timeframes` to specify what timeframe download the historical candle (OHLCV) data for. Default is `--timeframes 1m 5m` which will download 1-minute and 5-minute data.
62
62
* To use exchange, timeframe and list of pairs as defined in your configuration file, use the `-c/--config` option. With this, the script uses the whitelist defined in the config as the list of currency pairs to download data for and does not require the pairs.json file. You can combine `-c/--config` with most other options.
63
+
* When downloading futures data (`--trading-mode futures` or a configuration specifying futures mode), freqtrade will automatically download the necessary candle types (e.g. `mark` and `funding_rate` candles) unless specified otherwise via `--candle-types`.
63
64
64
65
??? Note "Permission denied errors"
65
66
If your configuration directory `user_data` was made by docker, you may get the following error:
Copy file name to clipboardExpand all lines: docs/deprecated.md
+37Lines changed: 37 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,3 +98,40 @@ Please use configuration based [log setup](advanced-setup.md#advanced-logging) i
98
98
99
99
The edge module has been deprecated in 2023.9 and removed in 2025.6.
100
100
All functionalities of edge have been removed, and having edge configured will result in an error.
101
+
102
+
## Adjustment to dynamic funding rate handling
103
+
104
+
With version 2025.12, the handling of dynamic funding rates has been adjusted to also support dynamic funding rates down to 1h funding intervals.
105
+
As a consequence, the mark and funding rate timeframes have been changed to 1h for every supported futures exchange.
106
+
107
+
As the timeframe for both mark and funding_fee candles has changed (usually from 8h to 1h) - already downloaded data will have to be adjusted or partially re-downloaded.
108
+
You can either re-download everything (`freqtrade download-data [...] --erase` - :warning: can take a long time) - or download the updated data selectively.
109
+
110
+
### Strategy
111
+
112
+
Most strategies should not need adjustments to continue to work as expected - however, strategies using `@informative("8h", candle_type="funding_rate")` or similar will have to switch the timeframe to 1h.
113
+
The same is true for `dp.get_pair_dataframe(metadata["pair"], "8h", candle_type="funding_rate")` - which will need to be switched to 1h.
114
+
115
+
freqtrade will auto-adjust the timeframe and return `funding_rates` despite the wrongly given timeframe. It'll issue a warning - and may still break your strategy.
116
+
117
+
### Selective data re-download
118
+
119
+
The script below should serve as an example - you may need to adjust the timeframe and exchange to your needs!
# download new data (only required once to fix the mark and funding fee data)
127
+
freqtrade download-data -t 1h --trading-mode futures --candle-types funding_rate mark [...] --timerange <full timerange you've got other data for>
128
+
129
+
```
130
+
131
+
The result of the above will be that your funding_rates and mark data will have the 1h timeframe.
132
+
you can verify this with `freqtrade list-data --exchange <yourexchange> --show`.
133
+
134
+
!!! Note "Additional arguments"
135
+
Additional arguments to the above commands may be necessary, like configuration files or explicit user_data if they deviate from the default.
136
+
137
+
**Hyperliquid** is a special case now - which will no longer require 1h mark data - but will use regular candles instead (this data never existed and is identical to 1h futures candles). As we don't support download-data for hyperliquid (they don't provide historic data) - there won't be actions necessary for hyperliquid users.
0 commit comments