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

This commit is contained in:
github-actions[bot] 2024-09-30 04:55:54 +00:00
parent 166789c746
commit 20111725d1
8 changed files with 80 additions and 89 deletions

View File

@ -2915,10 +2915,6 @@ In the below case, <code>max_open_trades</code> would be 3 after the merging - a
<td>Define one or more pairlists to be used. <a href="../plugins/#pairlists-and-pairlist-handlers">More information</a>. <br><em>Defaults to <code>StaticPairList</code>.</em> <br> <strong>Datatype:</strong> List of Dicts</td>
</tr>
<tr>
<td><code>protections</code></td>
<td>Define one or more protections to be used. <a href="../plugins/#protections">More information</a>. <br> <strong>Datatype:</strong> List of Dicts</td>
</tr>
<tr>
<td></td>
<td><strong>Telegram</strong></td>
</tr>

View File

@ -1599,6 +1599,15 @@
</span>
</a>
</li>
<li class="md-nav__item">
<a href="#removal-of-protections-from-configuration" class="md-nav__link">
<span class="md-ellipsis">
Removal of protections from configuration
</span>
</a>
</li>
</ul>
@ -1799,6 +1808,15 @@
</span>
</a>
</li>
<li class="md-nav__item">
<a href="#removal-of-protections-from-configuration" class="md-nav__link">
<span class="md-ellipsis">
Removal of protections from configuration
</span>
</a>
</li>
</ul>
@ -1869,6 +1887,8 @@ We will keep a compatibility layer for 1-2 versions (so both <code>buy_tag</code
</ul>
<h2 id="removal-of-populate_any_indicators">Removal of <code>populate_any_indicators</code><a class="headerlink" href="#removal-of-populate_any_indicators" title="Permanent link">&para;</a></h2>
<p>version 2023.3 saw the removal of <code>populate_any_indicators</code> in favor of split methods for feature engineering and targets. Please read the <a href="../strategy_migration/#freqai-strategy">migration document</a> for full details.</p>
<h2 id="removal-of-protections-from-configuration">Removal of <code>protections</code> from configuration<a class="headerlink" href="#removal-of-protections-from-configuration" title="Permanent link">&para;</a></h2>
<p>Setting protections from the configuration via <code>"protections": [],</code> has been removed in 2024.10, after having raised deprecation warnings for over 3 years.</p>

View File

@ -2505,8 +2505,7 @@ This Guide is directed towards Developers who want to develop a new protection.<
<p>No protection should use datetime directly, but use the provided <code>date_now</code> variable for date calculations. This preserves the ability to backtest protections.</p>
<div class="admonition tip">
<p class="admonition-title">Writing a new Protection</p>
<p>Best copy one of the existing Protections to have a good example.
Don't forget to register your protection in <code>constants.py</code> under the variable <code>AVAILABLE_PROTECTIONS</code> - otherwise it will not be selectable.</p>
<p>Best copy one of the existing Protections to have a good example.</p>
</div>
<h4 id="implementation-of-a-new-protection">Implementation of a new protection<a class="headerlink" href="#implementation-of-a-new-protection" title="Permanent link">&para;</a></h4>
<p>All Protection implementations must have <code>IProtection</code> as parent class.

View File

@ -1572,29 +1572,17 @@
<h1>Protections</h1>
<h2 id="protections">Protections<a class="headerlink" href="#protections" title="Permanent link">&para;</a></h2>
<div class="admonition warning">
<p class="admonition-title">Beta feature</p>
<p>This feature is still in it's testing phase. Should you notice something you think is wrong please let us know via Discord or via Github Issue.</p>
</div>
<p>Protections will protect your strategy from unexpected events and market conditions by temporarily stop trading for either one pair, or for all pairs.
All protection end times are rounded up to the next candle to avoid sudden, unexpected intra-candle buys.</p>
<div class="admonition note">
<p class="admonition-title">Note</p>
<p>Not all Protections will work for all strategies, and parameters will need to be tuned for your strategy to improve performance. </p>
</div>
<div class="admonition tip">
<p class="admonition-title">Tip</p>
<p class="admonition-title">Usage tips</p>
<p>Not all Protections will work for all strategies, and parameters will need to be tuned for your strategy to improve performance. </p>
<p>Each Protection can be configured multiple times with different parameters, to allow different levels of protection (short-term / long-term).</p>
</div>
<div class="admonition note">
<p class="admonition-title">Backtesting</p>
<p>Protections are supported by backtesting and hyperopt, but must be explicitly enabled by using the <code>--enable-protections</code> flag.</p>
</div>
<div class="admonition warning">
<p class="admonition-title">Setting protections from the configuration</p>
<p>Setting protections from the configuration via <code>"protections": [],</code> key should be considered deprecated and will be removed in a future version.
It is also no longer guaranteed that your protections apply to the strategy in cases where the strategy defines <a href="hyperopt.md#optimizing-protections">protections as property</a>.</p>
</div>
<h3 id="available-protections">Available Protections<a class="headerlink" href="#available-protections" title="Permanent link">&para;</a></h3>
<ul>
<li><a href="#stoploss-guard"><code>StoplossGuard</code></a> Stop trading if a certain amount of stoploss occurred within a certain time window.</li>

View File

@ -2606,29 +2606,17 @@ If the volatility over the last 10 days is not in the range of 0.05-0.50, remove
<span class="p">],</span>
</code></pre></div>
<h2 id="protections">Protections<a class="headerlink" href="#protections" title="Permanent link">&para;</a></h2>
<div class="admonition warning">
<p class="admonition-title">Beta feature</p>
<p>This feature is still in it's testing phase. Should you notice something you think is wrong please let us know via Discord or via Github Issue.</p>
</div>
<p>Protections will protect your strategy from unexpected events and market conditions by temporarily stop trading for either one pair, or for all pairs.
All protection end times are rounded up to the next candle to avoid sudden, unexpected intra-candle buys.</p>
<div class="admonition note">
<p class="admonition-title">Note</p>
<p>Not all Protections will work for all strategies, and parameters will need to be tuned for your strategy to improve performance. </p>
</div>
<div class="admonition tip">
<p class="admonition-title">Tip</p>
<p class="admonition-title">Usage tips</p>
<p>Not all Protections will work for all strategies, and parameters will need to be tuned for your strategy to improve performance. </p>
<p>Each Protection can be configured multiple times with different parameters, to allow different levels of protection (short-term / long-term).</p>
</div>
<div class="admonition note">
<p class="admonition-title">Backtesting</p>
<p>Protections are supported by backtesting and hyperopt, but must be explicitly enabled by using the <code>--enable-protections</code> flag.</p>
</div>
<div class="admonition warning">
<p class="admonition-title">Setting protections from the configuration</p>
<p>Setting protections from the configuration via <code>"protections": [],</code> key should be considered deprecated and will be removed in a future version.
It is also no longer guaranteed that your protections apply to the strategy in cases where the strategy defines <a href="../hyperopt/#optimizing-protections">protections as property</a>.</p>
</div>
<h3 id="available-protections">Available Protections<a class="headerlink" href="#available-protections" title="Permanent link">&para;</a></h3>
<ul>
<li><a href="#stoploss-guard"><code>StoplossGuard</code></a> Stop trading if a certain amount of stoploss occurred within a certain time window.</li>

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-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/advanced-backtesting/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/advanced-hyperopt/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/advanced-orderflow/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/advanced-setup/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/backtesting/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/bot-basics/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/bot-usage/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/configuration/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/data-analysis/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/data-download/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/deprecated/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/developer/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/docker_quickstart/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/edge/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/exchanges/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/faq/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/freq-ui/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/freqai-configuration/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/freqai-developers/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/freqai-feature-engineering/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/freqai-parameter-table/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/freqai-reinforcement-learning/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/freqai-running/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/freqai/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/hyperopt/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/installation/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/leverage/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/lookahead-analysis/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/plotting/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/plugins/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/producer-consumer/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/recursive-analysis/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/rest-api/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/sql_cheatsheet/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/stoploss/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/strategy-advanced/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/strategy-callbacks/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/strategy-customization/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/strategy_analysis_example/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/strategy_migration/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/telegram-usage/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/trade-object/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/updating/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/utils/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/webhook-config/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/windows_installation/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/includes/cors/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/includes/pairlists/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/includes/pricing/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/includes/protections/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/includes/release_template/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/includes/showcase/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
<url>
<loc>https://www.freqtrade.io/en/develop/includes/strategy-imports/</loc>
<lastmod>2024-09-29</lastmod>
<lastmod>2024-09-30</lastmod>
</url>
</urlset>

Binary file not shown.