Deployed 8af0631 to develop in en with MkDocs 1.6.1 and mike 2.1.3

This commit is contained in:
github-actions[bot]
2025-12-14 16:57:02 +00:00
parent f4601a2b18
commit 0e602d2186
5 changed files with 158 additions and 48 deletions

View File

@@ -2431,6 +2431,7 @@ If you are updating existing data after inserting new pairs that you have no dat
<span class="go"> [--data-format-ohlcv {json,jsongz,feather,parquet}]</span>
<span class="go"> [--data-format-trades {json,jsongz,feather,parquet}]</span>
<span class="go"> [--trading-mode {spot,margin,futures}]</span>
<span class="go"> [--candle-types {spot,futures,mark,index,premiumIndex,funding_rate} [{spot,futures,mark,index,premiumIndex,funding_rate} ...]]</span>
<span class="go"> [--prepend]</span>
<span class="go">options:</span>
@@ -2470,6 +2471,11 @@ If you are updating existing data after inserting new pairs that you have no dat
<span class="go"> `feather`).</span>
<span class="go"> --trading-mode, --tradingmode {spot,margin,futures}</span>
<span class="go"> Select Trading mode</span>
<span class="go"> --candle-types {spot,futures,mark,index,premiumIndex,funding_rate} [{spot,futures,mark,index,premiumIndex,funding_rate} ...]</span>
<span class="go"> Select candle type to download. Defaults to the</span>
<span class="go"> necessary candles for the selected trading mode (e.g.</span>
<span class="go"> &#39;spot&#39; or (&#39;futures&#39;, &#39;funding_rate&#39; and &#39;mark&#39;) for</span>
<span class="go"> futures).</span>
<span class="go"> --prepend Allow data prepending. (Data-appending is disabled)</span>
<span class="go">Common arguments:</span>
@@ -2524,6 +2530,7 @@ To also download data for inactive (delisted) pairs, add <code>--include-inactiv
<li>Given starting points are ignored if data is already available, downloading only missing data up to today.</li>
<li>Use <code>--timeframes</code> to specify what timeframe download the historical candle (OHLCV) data for. Default is <code>--timeframes 1m 5m</code> which will download 1-minute and 5-minute data.</li>
<li>To use exchange, timeframe and list of pairs as defined in your configuration file, use the <code>-c/--config</code> 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 <code>-c/--config</code> with most other options.</li>
<li>When downloading futures data (<code>--trading-mode futures</code> or a configuration specifying futures mode), freqtrade will automatically download the necessary candle types (e.g. <code>mark</code> and <code>funding_rate</code> candles) unless specified otherwise via <code>--candle-types</code>.</li>
</ul>
<details class="note">
<summary>Permission denied errors</summary>

View File

@@ -2064,6 +2064,45 @@
</span>
</a>
</li>
<li class="md-nav__item">
<a href="#adjustment-to-dynamic-funding-rate-handling" class="md-nav__link">
<span class="md-ellipsis">
Adjustment to dynamic funding rate handling
</span>
</a>
<nav class="md-nav" aria-label="Adjustment to dynamic funding rate handling">
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="#strategy" class="md-nav__link">
<span class="md-ellipsis">
Strategy
</span>
</a>
</li>
<li class="md-nav__item">
<a href="#selective-data-re-download" class="md-nav__link">
<span class="md-ellipsis">
Selective data re-download
</span>
</a>
</li>
</ul>
</nav>
</li>
</ul>
@@ -2343,6 +2382,45 @@
</span>
</a>
</li>
<li class="md-nav__item">
<a href="#adjustment-to-dynamic-funding-rate-handling" class="md-nav__link">
<span class="md-ellipsis">
Adjustment to dynamic funding rate handling
</span>
</a>
<nav class="md-nav" aria-label="Adjustment to dynamic funding rate handling">
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="#strategy" class="md-nav__link">
<span class="md-ellipsis">
Strategy
</span>
</a>
</li>
<li class="md-nav__item">
<a href="#selective-data-re-download" class="md-nav__link">
<span class="md-ellipsis">
Selective data re-download
</span>
</a>
</li>
</ul>
</nav>
</li>
</ul>
@@ -2431,6 +2509,31 @@ Please use configuration based <a href="../advanced-setup/#advanced-logging">log
<h2 id="removal-of-the-edge-module">Removal of the edge module<a class="headerlink" href="#removal-of-the-edge-module" title="Permanent link">&para;</a></h2>
<p>The edge module has been deprecated in 2023.9 and removed in 2025.6.
All functionalities of edge have been removed, and having edge configured will result in an error.</p>
<h2 id="adjustment-to-dynamic-funding-rate-handling">Adjustment to dynamic funding rate handling<a class="headerlink" href="#adjustment-to-dynamic-funding-rate-handling" title="Permanent link">&para;</a></h2>
<p>With version 2025.12, the handling of dynamic funding rates has been adjusted to also support dynamic funding rates down to 1h funding intervals.
As a consequence, the mark and funding rate timeframes have been changed to 1h for every supported futures exchange.</p>
<p>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.
You can either re-download everything (<code>freqtrade download-data [...] --erase</code> - <img alt="⚠" class="twemoji" src="https://cdn.jsdelivr.net/gh/jdecked/twemoji@15.1.0/assets/svg/26a0.svg" title=":warning:" /> can take a long time) - or download the updated data selectively.</p>
<h3 id="strategy">Strategy<a class="headerlink" href="#strategy" title="Permanent link">&para;</a></h3>
<p>Most strategies should not need adjustments to continue to work as expected - however, strategies using <code>@informative("8h", candle_type="funding_rate")</code> or similar will have to switch the timeframe to 1h.
The same is true for <code>dp.get_pair_dataframe(metadata["pair"], "8h", candle_type="funding_rate")</code> - which will need to be switched to 1h.</p>
<p>freqtrade will auto-adjust the timeframe and return <code>funding_rates</code> despite the wrongly given timeframe. It'll issue a warning - and may still break your strategy.</p>
<h3 id="selective-data-re-download">Selective data re-download<a class="headerlink" href="#selective-data-re-download" title="Permanent link">&para;</a></h3>
<p>The script below should serve as an example - you may need to adjust the timeframe and exchange to your needs!</p>
<div class="highlight"><pre><span></span><code><span class="c1"># Cleanup no longer needed data</span>
rm<span class="w"> </span>user_data/data/&lt;exchange&gt;/futures/*-mark-*
rm<span class="w"> </span>user_data/data/&lt;exchange&gt;/futures/*-funding_rate-*
<span class="c1"># download new data (only required once to fix the mark and funding fee data)</span>
freqtrade<span class="w"> </span>download-data<span class="w"> </span>-t<span class="w"> </span>1h<span class="w"> </span>--trading-mode<span class="w"> </span>futures<span class="w"> </span>--candle-types<span class="w"> </span>funding_rate<span class="w"> </span>mark<span class="w"> </span><span class="o">[</span>...<span class="o">]</span><span class="w"> </span>--timerange<span class="w"> </span>&lt;full<span class="w"> </span>timerange<span class="w"> </span>you<span class="err">&#39;</span>ve<span class="w"> </span>got<span class="w"> </span>other<span class="w"> </span>data<span class="w"> </span><span class="k">for</span>&gt;
</code></pre></div>
<p>The result of the above will be that your funding_rates and mark data will have the 1h timeframe.
you can verify this with <code>freqtrade list-data --exchange &lt;yourexchange&gt; --show</code>.</p>
<div class="admonition note">
<p class="admonition-title">Additional arguments</p>
<p>Additional arguments to the above commands may be necessary, like configuration files or explicit user_data if they deviate from the default.</p>
</div>
<p><strong>Hyperliquid</strong> 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.</p>

File diff suppressed because one or more lines are too long

View File

@@ -2,190 +2,190 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.freqtrade.io/en/stable/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/advanced-backtesting/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/advanced-hyperopt/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/advanced-orderflow/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/advanced-setup/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/backtesting/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/bot-basics/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/bot-usage/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/configuration/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/data-analysis/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/data-download/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/deprecated/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/developer/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/docker_quickstart/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/exchanges/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/faq/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/freq-ui/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/freqai-configuration/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/freqai-developers/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/freqai-feature-engineering/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/freqai-parameter-table/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/freqai-reinforcement-learning/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/freqai-running/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/freqai/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/hyperopt/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/installation/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/leverage/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/lookahead-analysis/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/plotting/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/plugins/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/producer-consumer/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/recursive-analysis/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/rest-api/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/sql_cheatsheet/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/stoploss/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/strategy-101/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/strategy-advanced/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/strategy-callbacks/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/strategy-customization/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/strategy_analysis_example/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/strategy_migration/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/telegram-usage/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/trade-object/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/updating/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/utils/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/webhook-config/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/stable/windows_installation/</loc>
<lastmod>2025-12-13</lastmod>
<lastmod>2025-12-14</lastmod>
</url>
</urlset>

Binary file not shown.