Deployed 250156f to develop in en with MkDocs 1.6.1 and mike 2.1.4

This commit is contained in:
github-actions[bot]
2026-03-22 18:23:12 +00:00
parent 2db4270181
commit 9a207a9849
4 changed files with 50 additions and 1 deletions
+1
View File
@@ -2803,6 +2803,7 @@ Most other exchanges provide OHLCV data with sufficient history, so downloading
<div class="admonition note">
<p class="admonition-title">Kraken user</p>
<p>Kraken users should read <a href="../exchanges/#historic-kraken-data">this</a> before starting to download data.</p>
<p>Kraken Futures uses standard OHLCV downloads and does not require <code>--dl-trades</code>.</p>
</div>
<p>Example call:</p>
<div class="highlight"><pre><span></span><code>freqtrade<span class="w"> </span>download-data<span class="w"> </span>--exchange<span class="w"> </span>kraken<span class="w"> </span>--pairs<span class="w"> </span>XRP/EUR<span class="w"> </span>ETH/EUR<span class="w"> </span>--days<span class="w"> </span><span class="m">20</span><span class="w"> </span>--dl-trades
+47
View File
@@ -1391,6 +1391,17 @@
</ul>
</nav>
</li>
<li class="md-nav__item">
<a href="#kraken-futures" class="md-nav__link">
<span class="md-ellipsis">
Kraken Futures
</span>
</a>
</li>
<li class="md-nav__item">
@@ -2423,6 +2434,17 @@
</ul>
</nav>
</li>
<li class="md-nav__item">
<a href="#kraken-futures" class="md-nav__link">
<span class="md-ellipsis">
Kraken Futures
</span>
</a>
</li>
<li class="md-nav__item">
@@ -2971,6 +2993,31 @@ It will also take a long time, as freqtrade will need to download every single t
<p>Please pay attention that rateLimit configuration entry holds delay in milliseconds between requests, NOT requests/sec rate.
So, in order to mitigate Kraken API "Rate limit exceeded" exception, this configuration should be increased, NOT decreased.</p>
</div>
<h2 id="kraken-futures">Kraken Futures<a class="headerlink" href="#kraken-futures" title="Permanent link">&para;</a></h2>
<p>Kraken Futures uses the exchange id <code>krakenfutures</code> and supports isolated futures mode.</p>
<div class="highlight"><pre><span></span><code>&quot;exchange&quot;: {
&quot;name&quot;: &quot;krakenfutures&quot;,
&quot;key&quot;: &quot;your_exchange_key&quot;,
&quot;secret&quot;: &quot;your_exchange_secret&quot;
},
&quot;trading_mode&quot;: &quot;futures&quot;,
&quot;margin_mode&quot;: &quot;isolated&quot;,
&quot;stake_currency&quot;: &quot;USD&quot;
</code></pre></div>
<div class="admonition tip">
<p class="admonition-title">Stoploss on Exchange</p>
<p>Kraken Futures supports <code>stoploss_on_exchange</code> with both <code>limit</code> and <code>market</code> stop orders.
Use <code>order_types.stoploss_price_type</code> to select the trigger price source (<code>mark</code>, <code>last</code>, or <code>index</code>).</p>
</div>
<div class="admonition note">
<p class="admonition-title">Collateral</p>
<p>Kraken Futures is USD-settled. Use USD as your stake currency.</p>
</div>
<div class="admonition note">
<p class="admonition-title">Flex (Multi-collateral) Accounts</p>
<p>Kraken Futures flex accounts allow collateral in multiple currencies, while trading remains USD-settled.
Freqtrade derives the <code>USD</code> balance from Kraken margin fields, so keep <code>stake_currency</code> set to <code>USD</code>.</p>
</div>
<h2 id="kucoin">Kucoin<a class="headerlink" href="#kucoin" title="Permanent link">&para;</a></h2>
<p>Kucoin requires a passphrase for each api key, you will therefore need to add this key into the configuration so your exchange section looks as follows:</p>
<div class="highlight"><pre><span></span><code><span class="nt">&quot;exchange&quot;</span><span class="p">:</span><span class="w"> </span><span class="p">{</span>
+1
View File
@@ -2226,6 +2226,7 @@
<li class="task-list-item"><label class="task-list-control"><input type="checkbox" disabled checked/><span class="task-list-indicator"></span></label> <a href="https://www.gate.io/ref/6266643">Gate.io</a></li>
<li class="task-list-item"><label class="task-list-control"><input type="checkbox" disabled checked/><span class="task-list-indicator"></span></label> <a href="https://hyperliquid.xyz/">Hyperliquid</a> (A decentralized exchange, or DEX)</li>
<li class="task-list-item"><label class="task-list-control"><input type="checkbox" disabled checked/><span class="task-list-indicator"></span></label> <a href="https://okx.com/">OKX</a></li>
<li class="task-list-item"><label class="task-list-control"><input type="checkbox" disabled checked/><span class="task-list-indicator"></span></label> <a href="https://www.kraken.com/features/futures">Kraken</a></li>
</ul>
<p>Please make sure to read the <a href="exchanges/">exchange specific notes</a>, as well as the <a href="leverage/">trading with leverage</a> documentation before diving in.</p>
<h3 id="community-tested">Community tested<a class="headerlink" href="#community-tested" title="Permanent link">&para;</a></h3>
File diff suppressed because one or more lines are too long