mirror of
https://github.com/freqtrade/freqtrade.git
synced 2026-02-06 14:20:24 +00:00
Deployed 0ad6a6a to develop in en with MkDocs 1.6.1 and mike 2.1.3
This commit is contained in:
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -2854,7 +2854,7 @@ In the below case, <code>max_open_trades</code> would be 3 after the merging - a
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>trailing_stop_positive</code></td>
|
||||
<td>Changes stoploss once profit has been reached. More details in the <a href="../stoploss/#trailing-stop-loss-custom-positive-loss">stoploss documentation</a>. <a href="#parameters-in-the-strategy">Strategy Override</a>. <br> <strong>Datatype:</strong> Float</td>
|
||||
<td>Changes stoploss once profit has been reached. More details in the <a href="../stoploss/#trailing-stop-loss-different-positive-loss">stoploss documentation</a>. <a href="#parameters-in-the-strategy">Strategy Override</a>. <br> <strong>Datatype:</strong> Float</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>trailing_stop_positive_offset</code></td>
|
||||
@@ -3785,7 +3785,7 @@ Should the websocket connection fail (or be disabled), the bot will fall back to
|
||||
// ...
|
||||
}
|
||||
</code></pre></div>
|
||||
<p>Should you be required to use a proxy, please refer to the <a href="#using-proxy-with-freqtrade">proxy section</a> for more information.</p>
|
||||
<p>Should you be required to use a proxy, please refer to the <a href="#using-a-proxy-with-freqtrade">proxy section</a> for more information.</p>
|
||||
<div class="admonition info">
|
||||
<p class="admonition-title">Rollout</p>
|
||||
<p>We're implementing this out slowly, ensuring stability of your bots.
|
||||
|
||||
@@ -1665,6 +1665,15 @@
|
||||
</span>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#i-sold-the-bots-capital-and-now-theres-errors-in-the-log" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
I sold the bot's capital and now there's errors in the log
|
||||
</span>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
@@ -2101,6 +2110,15 @@
|
||||
</span>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#i-sold-the-bots-capital-and-now-theres-errors-in-the-log" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
I sold the bot's capital and now there's errors in the log
|
||||
</span>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
@@ -2369,6 +2387,11 @@ To force an immediate update, you can use <code>/reload_config</code> - which wi
|
||||
<p>You can use "current" market data by using the <a href="../strategy-customization/#orderbookpair-maximum">dataprovider</a>'s orderbook or ticker methods - which however cannot be used during backtesting.</p>
|
||||
<h3 id="is-there-a-setting-to-only-exit-the-trades-being-held-and-not-perform-any-new-entries">Is there a setting to only Exit the trades being held and not perform any new Entries?<a class="headerlink" href="#is-there-a-setting-to-only-exit-the-trades-being-held-and-not-perform-any-new-entries" title="Permanent link">¶</a></h3>
|
||||
<p>You can use the <code>/stopentry</code> command in Telegram to prevent future trade entry, followed by <code>/forceexit all</code> (sell all open trades).</p>
|
||||
<h3 id="i-sold-the-bots-capital-and-now-theres-errors-in-the-log">I sold the bot's capital and now there's errors in the log<a class="headerlink" href="#i-sold-the-bots-capital-and-now-theres-errors-in-the-log" title="Permanent link">¶</a></h3>
|
||||
<p>Freqtrade assumes that the trades it opens are managed only though the bot.<br />
|
||||
If you happen to (accidentally) sell the bot's capital, freqtrade will try to recover by trying to re-find on-exchange orders.</p>
|
||||
<p>This is a best-effort approach, and will not work in all cases, especially when using order types that are not supported by freqtrade (OCO, iceberg, etc.), or when working with older trades (where the exchange no longer provides full order information).
|
||||
The exact limits will vary between exchanges - with the details usually being documented in the exchange's API documentation.</p>
|
||||
<h3 id="i-want-to-run-multiple-bots-on-the-same-machine">I want to run multiple bots on the same machine<a class="headerlink" href="#i-want-to-run-multiple-bots-on-the-same-machine" title="Permanent link">¶</a></h3>
|
||||
<p>Please look at the <a href="../advanced-setup/#running-multiple-instances-of-freqtrade">advanced setup documentation Page</a>.</p>
|
||||
<h3 id="im-getting-impossible-to-load-strategy-when-starting-the-bot">I'm getting "Impossible to load Strategy" when starting the bot<a class="headerlink" href="#im-getting-impossible-to-load-strategy-when-starting-the-bot" title="Permanent link">¶</a></h3>
|
||||
|
||||
@@ -2212,7 +2212,7 @@ model for training/prediction and has therefore prepended it with <code>%</code>
|
||||
</div>
|
||||
<h3 id="migrating-a-custom-ifreqaimodel-to-the-new-pipeline">Migrating a custom <code>IFreqaiModel</code> to the new Pipeline<a class="headerlink" href="#migrating-a-custom-ifreqaimodel-to-the-new-pipeline" title="Permanent link">¶</a></h3>
|
||||
<p>If you have created your own custom <code>IFreqaiModel</code> with a custom <code>train()</code>/<code>predict()</code> function, <em>and</em> you still rely on <code>data_cleaning_train/predict()</code>, then you will need to migrate to the new pipeline. If your model does <em>not</em> rely on <code>data_cleaning_train/predict()</code>, then you do not need to worry about this migration.</p>
|
||||
<p>More details about the migration can be found <a href="../strategy_migration/#freqai---new-data-pipeline">here</a>.</p>
|
||||
<p>More details about the migration can be found <a href="../strategy_migration/#freqai-new-data-pipeline">here</a>.</p>
|
||||
<h2 id="outlier-detection">Outlier detection<a class="headerlink" href="#outlier-detection" title="Permanent link">¶</a></h2>
|
||||
<p>Equity and crypto markets suffer from a high level of non-patterned noise in the form of outlier data points. FreqAI implements a variety of methods to identify such outliers and hence mitigate risk.</p>
|
||||
<h3 id="identifying-outliers-with-the-dissimilarity-index-di">Identifying outliers with the Dissimilarity Index (DI)<a class="headerlink" href="#identifying-outliers-with-the-dissimilarity-index-di" title="Permanent link">¶</a></h3>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -192,172 +192,4 @@
|
||||
<loc>https://www.freqtrade.io/en/stable/windows_installation/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/backtesting-analysis/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/backtesting-show/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/backtesting/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/convert-data/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/convert-db/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/convert-trade-data/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/create-userdir/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/download-data/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/edge/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/hyperopt-list/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/hyperopt-show/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/hyperopt/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/install-ui/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/list-data/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/list-exchanges/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/list-freqaimodels/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/list-hyperoptloss/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/list-markets/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/list-pairs/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/list-strategies/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/list-timeframes/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/lookahead-analysis/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/main/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/new-config/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/new-strategy/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/plot-dataframe/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/plot-profit/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/recursive-analysis/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/show-config/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/show-trades/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/strategy-updater/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/test-pairlist/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/trade/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/trades-to-ohlcv/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/commands/webserver/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/includes/cors/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/includes/pairlists/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/includes/pricing/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/includes/protections/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/includes/release_template/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/includes/showcase/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://www.freqtrade.io/en/stable/includes/strategy-imports/</loc>
|
||||
<lastmod>2025-05-22</lastmod>
|
||||
</url>
|
||||
</urlset>
|
||||
Binary file not shown.
@@ -1788,7 +1788,7 @@ freqtrade<span class="w"> </span>install-ui<span class="w"> </span>
|
||||
Please refer to the corresponding installation sections (common problems linked below)</p>
|
||||
<p>Common problems and their solutions:</p>
|
||||
<ul>
|
||||
<li><a href="../windows_installation/#2-install-ta-lib">ta-lib update on windows</a></li>
|
||||
<li><a href="../windows_installation/#install-ta-lib">ta-lib update on windows</a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user