Deployed ae41ab1 to develop in en with MkDocs 1.6.1 and mike 2.1.3

This commit is contained in:
github-actions[bot] 2024-09-15 09:29:59 +00:00
parent 579f20ee25
commit 1462081b6e
7 changed files with 59 additions and 65 deletions

View File

@ -2887,10 +2887,6 @@ In the below case, <code>max_open_trades</code> would be 3 after the merging - a
<td>The interval in minutes in which markets are reloaded. <br><em>Defaults to <code>60</code> minutes.</em> <br> <strong>Datatype:</strong> Positive Integer</td>
</tr>
<tr>
<td><code>exchange.skip_pair_validation</code></td>
<td>Skip pairlist validation on startup.<br><em>Defaults to <code>false</code></em><br> <strong>Datatype:</strong> Boolean</td>
</tr>
<tr>
<td><code>exchange.skip_open_order_update</code></td>
<td>Skips open order updates on startup should the exchange cause problems. Only relevant in live conditions.<br><em>Defaults to <code>false</code></em><br> <strong>Datatype:</strong> Boolean</td>
</tr>

View File

@ -2484,14 +2484,14 @@ Hopefully you also want to contribute this back upstream.</p>
<p>Override this method if the Pairlist Handler can be used as the leading Pairlist Handler in the chain, defining the initial pairlist which is then handled by all Pairlist Handlers in the chain. Examples are <code>StaticPairList</code> and <code>VolumePairList</code>.</p>
<p>This is called with each iteration of the bot (only if the Pairlist Handler is at the first location) - so consider implementing caching for compute/network heavy calculations.</p>
<p>It must return the resulting pairlist (which may then be passed into the chain of Pairlist Handlers).</p>
<p>Validations are optional, the parent class exposes a <code>_verify_blacklist(pairlist)</code> and <code>_whitelist_for_active_markets(pairlist)</code> to do default filtering. Use this if you limit your result to a certain number of pairs - so the end-result is not shorter than expected.</p>
<p>Validations are optional, the parent class exposes a <code>verify_blacklist(pairlist)</code> and <code>_whitelist_for_active_markets(pairlist)</code> to do default filtering. Use this if you limit your result to a certain number of pairs - so the end-result is not shorter than expected.</p>
<h4 id="filter_pairlist">filter_pairlist<a class="headerlink" href="#filter_pairlist" title="Permanent link">&para;</a></h4>
<p>This method is called for each Pairlist Handler in the chain by the pairlist manager.</p>
<p>This is called with each iteration of the bot - so consider implementing caching for compute/network heavy calculations.</p>
<p>It gets passed a pairlist (which can be the result of previous pairlists) as well as <code>tickers</code>, a pre-fetched version of <code>get_tickers()</code>.</p>
<p>The default implementation in the base class simply calls the <code>_validate_pair()</code> method for each pair in the pairlist, but you may override it. So you should either implement the <code>_validate_pair()</code> in your Pairlist Handler or override <code>filter_pairlist()</code> to do something else.</p>
<p>If overridden, it must return the resulting pairlist (which may then be passed into the next Pairlist Handler in the chain).</p>
<p>Validations are optional, the parent class exposes a <code>_verify_blacklist(pairlist)</code> and <code>_whitelist_for_active_markets(pairlist)</code> to do default filters. Use this if you limit your result to a certain number of pairs - so the end result is not shorter than expected.</p>
<p>Validations are optional, the parent class exposes a <code>verify_blacklist(pairlist)</code> and <code>_whitelist_for_active_markets(pairlist)</code> to do default filters. Use this if you limit your result to a certain number of pairs - so the end result is not shorter than expected.</p>
<p>In <code>VolumePairList</code>, this implements different methods of sorting, does early validation so only the expected number of pairs is returned.</p>
<h5 id="sample">sample<a class="headerlink" href="#sample" title="Permanent link">&para;</a></h5>
<div class="highlight"><pre><span></span><code> <span class="k">def</span> <span class="nf">filter_pairlist</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">pairlist</span><span class="p">:</span> <span class="n">List</span><span class="p">[</span><span class="nb">str</span><span class="p">],</span> <span class="n">tickers</span><span class="p">:</span> <span class="n">Dict</span><span class="p">)</span> <span class="o">-&gt;</span> <span class="n">List</span><span class="p">[</span><span class="nb">str</span><span class="p">]:</span>

View File

@ -1737,8 +1737,7 @@ You may also use something like <code>.*DOWN/BTC</code> or <code>.*UP/BTC</code>
</code></pre></div>
<p>By default, only currently enabled pairs are allowed.
To skip pair validation against active markets, set <code>"allow_inactive": true</code> within the <code>StaticPairList</code> configuration.
This can be useful for backtesting expired pairs (like quarterly spot-markets).
This option must be configured along with <code>exchange.skip_pair_validation</code> in the exchange configuration.</p>
This can be useful for backtesting expired pairs (like quarterly spot-markets).</p>
<p>When used in a "follow-up" position (e.g. after VolumePairlist), all pairs in <code>'pair_whitelist'</code> will be added to the end of the pairlist.</p>
<h4 id="volume-pair-list">Volume Pair List<a class="headerlink" href="#volume-pair-list" title="Permanent link">&para;</a></h4>
<p><code>VolumePairList</code> employs sorting/filtering of pairs by their trading volume. It selects <code>number_assets</code> top pairs with sorting based on the <code>sort_key</code> (which can only be <code>quoteVolume</code>).</p>

View File

@ -2157,8 +2157,7 @@ You may also use something like <code>.*DOWN/BTC</code> or <code>.*UP/BTC</code>
</code></pre></div>
<p>By default, only currently enabled pairs are allowed.
To skip pair validation against active markets, set <code>"allow_inactive": true</code> within the <code>StaticPairList</code> configuration.
This can be useful for backtesting expired pairs (like quarterly spot-markets).
This option must be configured along with <code>exchange.skip_pair_validation</code> in the exchange configuration.</p>
This can be useful for backtesting expired pairs (like quarterly spot-markets).</p>
<p>When used in a "follow-up" position (e.g. after VolumePairlist), all pairs in <code>'pair_whitelist'</code> will be added to the end of the pairlist.</p>
<h4 id="volume-pair-list">Volume Pair List<a class="headerlink" href="#volume-pair-list" title="Permanent link">&para;</a></h4>
<p><code>VolumePairList</code> employs sorting/filtering of pairs by their trading volume. It selects <code>number_assets</code> top pairs with sorting based on the <code>sort_key</code> (which can only be <code>quoteVolume</code>).</p>

File diff suppressed because one or more lines are too long

View File

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

Binary file not shown.