Deployed 7e7e475 to develop in en with MkDocs 1.6.1 and mike 2.1.4

This commit is contained in:
github-actions[bot]
2026-03-31 05:20:03 +00:00
parent df495f4472
commit 970aa93176
44 changed files with 13314 additions and 6959 deletions
+7 -7
View File
@@ -2317,9 +2317,9 @@ Also, never risk more than what you can afford to lose.</p>
<p>In addition to the gains/losses from the change in price of the futures contract, traders also exchange <em>funding fees</em>, which are gains/losses worth an amount that is derived from the difference in price between the futures contract and the underlying asset. The difference in price between a futures contract and the underlying asset varies between exchanges.</p>
<p>To trade in futures markets, you'll have to set <code>trading_mode</code> to "futures".
You will also have to pick a "margin mode" (explanation below).</p>
<p><code>json
"trading_mode": "futures",
"margin_mode": "isolated"</code></p>
<div class="highlight"><pre><span></span><code><span class="nt">&quot;trading_mode&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;futures&quot;</span><span class="p">,</span>
<span class="nt">&quot;margin_mode&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;isolated&quot;</span>
</code></pre></div>
<h5 id="pair-namings">Pair namings<a class="headerlink" href="#pair-namings" title="Permanent link">&para;</a></h5>
<p>Freqtrade follows the <a href="https://docs.ccxt.com/#/README?id=perpetual-swap-perpetual-future">ccxt naming conventions for futures</a>.
A futures pair will therefore have the naming of <code>base/quote:settle</code> (e.g. <code>ETH/USDT:USDT</code>).</p>
@@ -2329,12 +2329,12 @@ While freqtrade currently only supports one margin mode, this will change, and b
<p>The possible values are: <code>isolated</code>, or <code>cross</code>.</p>
<h4 id="isolated-margin-mode">Isolated margin mode<a class="headerlink" href="#isolated-margin-mode" title="Permanent link">&para;</a></h4>
<p>Each market(trading pair), keeps collateral in a separate account</p>
<p><code>json
"margin_mode": "isolated"</code></p>
<div class="highlight"><pre><span></span><code><span class="nt">&quot;margin_mode&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;isolated&quot;</span>
</code></pre></div>
<h4 id="cross-margin-mode">Cross margin mode<a class="headerlink" href="#cross-margin-mode" title="Permanent link">&para;</a></h4>
<p>One account is used to share collateral between markets (trading pairs). Margin is taken from total account balance to avoid liquidation when needed.</p>
<p><code>json
"margin_mode": "cross"</code></p>
<div class="highlight"><pre><span></span><code><span class="nt">&quot;margin_mode&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;cross&quot;</span>
</code></pre></div>
<p>Please read the <a href="../exchanges/">exchange specific notes</a> for exchanges that support this mode and how they differ.</p>
<div class="admonition warning">
<p class="admonition-title">Increased risk of liquidation</p>