mirror of
https://github.com/freqtrade/freqtrade.git
synced 2026-01-20 14:00:38 +00:00
Deployed 503eb1e to develop in en with MkDocs 1.6.1 and mike 2.1.3
This commit is contained in:
@@ -1121,9 +1121,18 @@
|
||||
<ul class="md-nav__list">
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#binance-futures-settings" class="md-nav__link">
|
||||
<a href="#binance-isolated-futures-settings" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
Binance futures settings
|
||||
Binance isolated futures settings
|
||||
</span>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#binance-bnfcr-futures" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
Binance BNFCR futures
|
||||
</span>
|
||||
</a>
|
||||
|
||||
@@ -1866,9 +1875,18 @@
|
||||
<ul class="md-nav__list">
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#binance-futures-settings" class="md-nav__link">
|
||||
<a href="#binance-isolated-futures-settings" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
Binance futures settings
|
||||
Binance isolated futures settings
|
||||
</span>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#binance-bnfcr-futures" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
Binance BNFCR futures
|
||||
</span>
|
||||
</a>
|
||||
|
||||
@@ -2144,11 +2162,26 @@ Violating these rules will result in a trading restriction.</p>
|
||||
"order_book_top": 1
|
||||
},
|
||||
</code></pre></div>
|
||||
<h4 id="binance-futures-settings">Binance futures settings<a class="headerlink" href="#binance-futures-settings" title="Permanent link">¶</a></h4>
|
||||
<h4 id="binance-isolated-futures-settings">Binance isolated futures settings<a class="headerlink" href="#binance-isolated-futures-settings" title="Permanent link">¶</a></h4>
|
||||
<p>Users will also have to have the futures-setting "Position Mode" set to "One-way Mode", and "Asset Mode" set to "Single-Asset Mode".
|
||||
These settings will be checked on startup, and freqtrade will show an error if this setting is wrong.</p>
|
||||
<p><img alt="Binance futures settings" src="../assets/binance_futures_settings.png" /></p>
|
||||
<p>Freqtrade will not attempt to change these settings.</p>
|
||||
<h4 id="binance-bnfcr-futures">Binance BNFCR futures<a class="headerlink" href="#binance-bnfcr-futures" title="Permanent link">¶</a></h4>
|
||||
<p>BNFCR mode are a special type of futures mode on Binance to work around regulatory issues in Europe.<br />
|
||||
To use BNFCR futures, you will have to have the following combination of settings:</p>
|
||||
<div class="highlight"><pre><span></span><code>{
|
||||
// ...
|
||||
"trading_mode": "futures",
|
||||
"margin_mode": "cross",
|
||||
"proxy_coin": "BNFCR",
|
||||
"stake_currency": "USDT" // or "USDC"
|
||||
// ...
|
||||
}
|
||||
</code></pre></div>
|
||||
<p>The <code>stake_currency</code> setting defines the markets the bot will be operating in. This choice is really arbitrary.</p>
|
||||
<p>On the exchange, you'll have to use "Multi-asset Mode" - and "Position Mode set to "One-way Mode".
|
||||
Freqtrade will check these settings on startup, but won't attempt to change them.</p>
|
||||
<h2 id="bingx">Bingx<a class="headerlink" href="#bingx" title="Permanent link">¶</a></h2>
|
||||
<p>BingX supports <a href="../configuration/#understand-order_time_in_force">time_in_force</a> with settings "GTC" (good till cancelled), "IOC" (immediate-or-cancel) and "PO" (Post only) settings.</p>
|
||||
<div class="admonition tip">
|
||||
|
||||
@@ -1076,9 +1076,9 @@
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#cross-margin-mode-currently-unavailable" class="md-nav__link">
|
||||
<a href="#cross-margin-mode" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
Cross margin mode (currently unavailable)
|
||||
Cross margin mode
|
||||
</span>
|
||||
</a>
|
||||
|
||||
@@ -1809,9 +1809,9 @@
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#cross-margin-mode-currently-unavailable" class="md-nav__link">
|
||||
<a href="#cross-margin-mode" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
Cross margin mode (currently unavailable)
|
||||
Cross margin mode
|
||||
</span>
|
||||
</a>
|
||||
|
||||
@@ -1967,7 +1967,7 @@ While freqtrade currently only supports one margin mode, this will change, and b
|
||||
<p>Each market(trading pair), keeps collateral in a separate account</p>
|
||||
<div class="highlight"><pre><span></span><code><span class="nt">"margin_mode"</span><span class="p">:</span><span class="w"> </span><span class="s2">"isolated"</span>
|
||||
</code></pre></div>
|
||||
<h4 id="cross-margin-mode-currently-unavailable">Cross margin mode (currently unavailable)<a class="headerlink" href="#cross-margin-mode-currently-unavailable" title="Permanent link">¶</a></h4>
|
||||
<h4 id="cross-margin-mode">Cross margin mode<a class="headerlink" href="#cross-margin-mode" title="Permanent link">¶</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>
|
||||
<div class="highlight"><pre><span></span><code><span class="nt">"margin_mode"</span><span class="p">:</span><span class="w"> </span><span class="s2">"cross"</span>
|
||||
</code></pre></div>
|
||||
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user