Deployed d24bef7 to develop in en with MkDocs 1.6.1 and mike 2.1.3
This commit is contained in:
@@ -1948,12 +1948,14 @@ To learn how to get data for the pairs and exchange you're interested in, head o
|
|||||||
<h2 id="backtesting-command-reference">Backtesting command reference<a class="headerlink" href="#backtesting-command-reference" title="Permanent link">¶</a></h2>
|
<h2 id="backtesting-command-reference">Backtesting command reference<a class="headerlink" href="#backtesting-command-reference" title="Permanent link">¶</a></h2>
|
||||||
<div class="highlight"><pre><span></span><code>usage: freqtrade backtesting [-h] [-v] [--logfile FILE] [-V] [-c PATH]
|
<div class="highlight"><pre><span></span><code>usage: freqtrade backtesting [-h] [-v] [--logfile FILE] [-V] [-c PATH]
|
||||||
[-d PATH] [--userdir PATH] [-s NAME]
|
[-d PATH] [--userdir PATH] [-s NAME]
|
||||||
[--strategy-path PATH] [-i TIMEFRAME]
|
[--strategy-path PATH]
|
||||||
[--timerange TIMERANGE]
|
[--recursive-strategy-search]
|
||||||
[--data-format-ohlcv {json,jsongz,hdf5}]
|
[--freqaimodel NAME] [--freqaimodel-path PATH]
|
||||||
|
[-i TIMEFRAME] [--timerange TIMERANGE]
|
||||||
|
[--data-format-ohlcv {json,jsongz,hdf5,feather,parquet}]
|
||||||
[--max-open-trades INT]
|
[--max-open-trades INT]
|
||||||
[--stake-amount STAKE_AMOUNT] [--fee FLOAT]
|
[--stake-amount STAKE_AMOUNT] [--fee FLOAT]
|
||||||
[-p PAIRS [PAIRS ...]] [--eps] [--dmmp]
|
[-p PAIRS [PAIRS ...]] [--eps]
|
||||||
[--enable-protections]
|
[--enable-protections]
|
||||||
[--dry-run-wallet DRY_RUN_WALLET]
|
[--dry-run-wallet DRY_RUN_WALLET]
|
||||||
[--timeframe-detail TIMEFRAME_DETAIL]
|
[--timeframe-detail TIMEFRAME_DETAIL]
|
||||||
@@ -1962,8 +1964,9 @@ To learn how to get data for the pairs and exchange you're interested in, head o
|
|||||||
[--export-filename PATH]
|
[--export-filename PATH]
|
||||||
[--breakdown {day,week,month} [{day,week,month} ...]]
|
[--breakdown {day,week,month} [{day,week,month} ...]]
|
||||||
[--cache {none,day,week,month}]
|
[--cache {none,day,week,month}]
|
||||||
|
[--freqai-backtest-live-models]
|
||||||
|
|
||||||
optional arguments:
|
options:
|
||||||
-h, --help show this help message and exit
|
-h, --help show this help message and exit
|
||||||
-i TIMEFRAME, --timeframe TIMEFRAME
|
-i TIMEFRAME, --timeframe TIMEFRAME
|
||||||
Specify timeframe (`1m`, `5m`, `30m`, `1h`, `1d`).
|
Specify timeframe (`1m`, `5m`, `30m`, `1h`, `1d`).
|
||||||
@@ -1986,10 +1989,6 @@ optional arguments:
|
|||||||
--eps, --enable-position-stacking
|
--eps, --enable-position-stacking
|
||||||
Allow buying the same pair multiple times (position
|
Allow buying the same pair multiple times (position
|
||||||
stacking).
|
stacking).
|
||||||
--dmmp, --disable-max-market-positions
|
|
||||||
Disable applying `max_open_trades` during backtest
|
|
||||||
(same as setting `max_open_trades` to a very high
|
|
||||||
number).
|
|
||||||
--enable-protections, --enableprotections
|
--enable-protections, --enableprotections
|
||||||
Enable protections for backtesting.Will slow
|
Enable protections for backtesting.Will slow
|
||||||
backtesting down by a considerable amount, but will
|
backtesting down by a considerable amount, but will
|
||||||
@@ -2018,10 +2017,13 @@ optional arguments:
|
|||||||
--cache {none,day,week,month}
|
--cache {none,day,week,month}
|
||||||
Load a cached backtest result no older than specified
|
Load a cached backtest result no older than specified
|
||||||
age (default: day).
|
age (default: day).
|
||||||
|
--freqai-backtest-live-models
|
||||||
|
Run backtest with ready models.
|
||||||
|
|
||||||
Common arguments:
|
Common arguments:
|
||||||
-v, --verbose Verbose mode (-vv for more, -vvv to get all messages).
|
-v, --verbose Verbose mode (-vv for more, -vvv to get all messages).
|
||||||
--logfile FILE Log to the file specified. Special values are:
|
--logfile FILE, --log-file FILE
|
||||||
|
Log to the file specified. Special values are:
|
||||||
'syslog', 'journald'. See the documentation for more
|
'syslog', 'journald'. See the documentation for more
|
||||||
details.
|
details.
|
||||||
-V, --version show program's version number and exit
|
-V, --version show program's version number and exit
|
||||||
@@ -2030,7 +2032,7 @@ Common arguments:
|
|||||||
`userdir/config.json` or `config.json` whichever
|
`userdir/config.json` or `config.json` whichever
|
||||||
exists). Multiple --config options may be used. Can be
|
exists). Multiple --config options may be used. Can be
|
||||||
set to `-` to read config from stdin.
|
set to `-` to read config from stdin.
|
||||||
-d PATH, --datadir PATH
|
-d PATH, --datadir PATH, --data-dir PATH
|
||||||
Path to directory with historical backtesting data.
|
Path to directory with historical backtesting data.
|
||||||
--userdir PATH, --user-data-dir PATH
|
--userdir PATH, --user-data-dir PATH
|
||||||
Path to userdata directory.
|
Path to userdata directory.
|
||||||
@@ -2040,6 +2042,12 @@ Strategy arguments:
|
|||||||
Specify strategy class name which will be used by the
|
Specify strategy class name which will be used by the
|
||||||
bot.
|
bot.
|
||||||
--strategy-path PATH Specify additional strategy lookup path.
|
--strategy-path PATH Specify additional strategy lookup path.
|
||||||
|
--recursive-strategy-search
|
||||||
|
Recursively search for a strategy in the strategies
|
||||||
|
folder.
|
||||||
|
--freqaimodel NAME Specify a custom freqaimodels.
|
||||||
|
--freqaimodel-path PATH
|
||||||
|
Specify additional lookup path for freqaimodels.
|
||||||
</code></pre></div>
|
</code></pre></div>
|
||||||
<h2 id="test-your-strategy-with-backtesting">Test your strategy with Backtesting<a class="headerlink" href="#test-your-strategy-with-backtesting" title="Permanent link">¶</a></h2>
|
<h2 id="test-your-strategy-with-backtesting">Test your strategy with Backtesting<a class="headerlink" href="#test-your-strategy-with-backtesting" title="Permanent link">¶</a></h2>
|
||||||
<p>Now you have good Entry and exit strategies and some historic data, you want to test it against
|
<p>Now you have good Entry and exit strategies and some historic data, you want to test it against
|
||||||
|
|||||||
@@ -2413,11 +2413,11 @@ pip<span class="w"> </span>install<span class="w"> </span>-r<span class="w"> </s
|
|||||||
[--recursive-strategy-search] [--freqaimodel NAME]
|
[--recursive-strategy-search] [--freqaimodel NAME]
|
||||||
[--freqaimodel-path PATH] [-i TIMEFRAME]
|
[--freqaimodel-path PATH] [-i TIMEFRAME]
|
||||||
[--timerange TIMERANGE]
|
[--timerange TIMERANGE]
|
||||||
[--data-format-ohlcv {json,jsongz,hdf5}]
|
[--data-format-ohlcv {json,jsongz,hdf5,feather,parquet}]
|
||||||
[--max-open-trades INT]
|
[--max-open-trades INT]
|
||||||
[--stake-amount STAKE_AMOUNT] [--fee FLOAT]
|
[--stake-amount STAKE_AMOUNT] [--fee FLOAT]
|
||||||
[-p PAIRS [PAIRS ...]] [--hyperopt-path PATH]
|
[-p PAIRS [PAIRS ...]] [--hyperopt-path PATH]
|
||||||
[--eps] [--dmmp] [--enable-protections]
|
[--eps] [--enable-protections]
|
||||||
[--dry-run-wallet DRY_RUN_WALLET]
|
[--dry-run-wallet DRY_RUN_WALLET]
|
||||||
[--timeframe-detail TIMEFRAME_DETAIL] [-e INT]
|
[--timeframe-detail TIMEFRAME_DETAIL] [-e INT]
|
||||||
[--spaces {all,buy,sell,roi,stoploss,trailing,protection,trades,default} [{all,buy,sell,roi,stoploss,trailing,protection,trades,default} ...]]
|
[--spaces {all,buy,sell,roi,stoploss,trailing,protection,trades,default} [{all,buy,sell,roi,stoploss,trailing,protection,trades,default} ...]]
|
||||||
@@ -2426,15 +2426,15 @@ pip<span class="w"> </span>install<span class="w"> </span>-r<span class="w"> </s
|
|||||||
[--hyperopt-loss NAME] [--disable-param-export]
|
[--hyperopt-loss NAME] [--disable-param-export]
|
||||||
[--ignore-missing-spaces] [--analyze-per-epoch]
|
[--ignore-missing-spaces] [--analyze-per-epoch]
|
||||||
|
|
||||||
optional arguments:
|
options:
|
||||||
-h, --help show this help message and exit
|
-h, --help show this help message and exit
|
||||||
-i TIMEFRAME, --timeframe TIMEFRAME
|
-i TIMEFRAME, --timeframe TIMEFRAME
|
||||||
Specify timeframe (`1m`, `5m`, `30m`, `1h`, `1d`).
|
Specify timeframe (`1m`, `5m`, `30m`, `1h`, `1d`).
|
||||||
--timerange TIMERANGE
|
--timerange TIMERANGE
|
||||||
Specify what timerange of data to use.
|
Specify what timerange of data to use.
|
||||||
--data-format-ohlcv {json,jsongz,hdf5}
|
--data-format-ohlcv {json,jsongz,hdf5,feather,parquet}
|
||||||
Storage format for downloaded candle (OHLCV) data.
|
Storage format for downloaded candle (OHLCV) data.
|
||||||
(default: `json`).
|
(default: `feather`).
|
||||||
--max-open-trades INT
|
--max-open-trades INT
|
||||||
Override the value of the `max_open_trades`
|
Override the value of the `max_open_trades`
|
||||||
configuration setting.
|
configuration setting.
|
||||||
@@ -2451,10 +2451,6 @@ optional arguments:
|
|||||||
--eps, --enable-position-stacking
|
--eps, --enable-position-stacking
|
||||||
Allow buying the same pair multiple times (position
|
Allow buying the same pair multiple times (position
|
||||||
stacking).
|
stacking).
|
||||||
--dmmp, --disable-max-market-positions
|
|
||||||
Disable applying `max_open_trades` during backtest
|
|
||||||
(same as setting `max_open_trades` to a very high
|
|
||||||
number).
|
|
||||||
--enable-protections, --enableprotections
|
--enable-protections, --enableprotections
|
||||||
Enable protections for backtesting.Will slow
|
Enable protections for backtesting.Will slow
|
||||||
backtesting down by a considerable amount, but will
|
backtesting down by a considerable amount, but will
|
||||||
@@ -2504,7 +2500,8 @@ optional arguments:
|
|||||||
|
|
||||||
Common arguments:
|
Common arguments:
|
||||||
-v, --verbose Verbose mode (-vv for more, -vvv to get all messages).
|
-v, --verbose Verbose mode (-vv for more, -vvv to get all messages).
|
||||||
--logfile FILE Log to the file specified. Special values are:
|
--logfile FILE, --log-file FILE
|
||||||
|
Log to the file specified. Special values are:
|
||||||
'syslog', 'journald'. See the documentation for more
|
'syslog', 'journald'. See the documentation for more
|
||||||
details.
|
details.
|
||||||
-V, --version show program's version number and exit
|
-V, --version show program's version number and exit
|
||||||
@@ -2513,7 +2510,7 @@ Common arguments:
|
|||||||
`userdir/config.json` or `config.json` whichever
|
`userdir/config.json` or `config.json` whichever
|
||||||
exists). Multiple --config options may be used. Can be
|
exists). Multiple --config options may be used. Can be
|
||||||
set to `-` to read config from stdin.
|
set to `-` to read config from stdin.
|
||||||
-d PATH, --datadir PATH
|
-d PATH, --datadir PATH, --data-dir PATH
|
||||||
Path to directory with historical backtesting data.
|
Path to directory with historical backtesting data.
|
||||||
--userdir PATH, --user-data-dir PATH
|
--userdir PATH, --user-data-dir PATH
|
||||||
Path to userdata directory.
|
Path to userdata directory.
|
||||||
@@ -3171,16 +3168,13 @@ The prevalence is therefore: config > parameter file > strategy <code>*_pa
|
|||||||
<p>Windows does not support color-output natively, therefore it is automatically disabled. To have color-output for hyperopt running under windows, please consider using WSL.</p>
|
<p>Windows does not support color-output natively, therefore it is automatically disabled. To have color-output for hyperopt running under windows, please consider using WSL.</p>
|
||||||
</div>
|
</div>
|
||||||
<h2 id="position-stacking-and-disabling-max-market-positions">Position stacking and disabling max market positions<a class="headerlink" href="#position-stacking-and-disabling-max-market-positions" title="Permanent link">¶</a></h2>
|
<h2 id="position-stacking-and-disabling-max-market-positions">Position stacking and disabling max market positions<a class="headerlink" href="#position-stacking-and-disabling-max-market-positions" title="Permanent link">¶</a></h2>
|
||||||
<p>In some situations, you may need to run Hyperopt (and Backtesting) with the
|
<p>In some situations, you may need to run Hyperopt (and Backtesting) with the <code>--eps</code>/<code>--enable-position-staking</code> argument, or you may need to set <code>max_open_trades</code> to a very high number to disable the limit on the number of open trades.</p>
|
||||||
<code>--eps</code>/<code>--enable-position-staking</code> and <code>--dmmp</code>/<code>--disable-max-market-positions</code> arguments.</p>
|
|
||||||
<p>By default, hyperopt emulates the behavior of the Freqtrade Live Run/Dry Run, where only one
|
<p>By default, hyperopt emulates the behavior of the Freqtrade Live Run/Dry Run, where only one
|
||||||
open trade is allowed for every traded pair. The total number of trades open for all pairs
|
open trade per pair is allowed. The total number of trades open for all pairs
|
||||||
is also limited by the <code>max_open_trades</code> setting. During Hyperopt/Backtesting this may lead to
|
is also limited by the <code>max_open_trades</code> setting. During Hyperopt/Backtesting this may lead to
|
||||||
some potential trades to be hidden (or masked) by previously open trades.</p>
|
potential trades being hidden (or masked) by already open trades.</p>
|
||||||
<p>The <code>--eps</code>/<code>--enable-position-stacking</code> argument allows emulation of buying the same pair multiple times,
|
<p>The <code>--eps</code>/<code>--enable-position-stacking</code> argument allows emulation of buying the same pair multiple times.
|
||||||
while <code>--dmmp</code>/<code>--disable-max-market-positions</code> disables applying <code>max_open_trades</code>
|
Using <code>--max-open-trades</code> with a very high number will disable the limit on the number of open trades.</p>
|
||||||
during Hyperopt/Backtesting (which is equal to setting <code>max_open_trades</code> to a very high
|
|
||||||
number).</p>
|
|
||||||
<div class="admonition note">
|
<div class="admonition note">
|
||||||
<p class="admonition-title">Note</p>
|
<p class="admonition-title">Note</p>
|
||||||
<p>Dry/live runs will <strong>NOT</strong> use position stacking - therefore it does make sense to also validate the strategy without this as it's closer to reality.</p>
|
<p>Dry/live runs will <strong>NOT</strong> use position stacking - therefore it does make sense to also validate the strategy without this as it's closer to reality.</p>
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
+55
-55
@@ -2,222 +2,222 @@
|
|||||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/</loc>
|
<loc>https://www.freqtrade.io/en/stable/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/advanced-backtesting/</loc>
|
<loc>https://www.freqtrade.io/en/stable/advanced-backtesting/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/advanced-hyperopt/</loc>
|
<loc>https://www.freqtrade.io/en/stable/advanced-hyperopt/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/advanced-orderflow/</loc>
|
<loc>https://www.freqtrade.io/en/stable/advanced-orderflow/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/advanced-setup/</loc>
|
<loc>https://www.freqtrade.io/en/stable/advanced-setup/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/backtesting/</loc>
|
<loc>https://www.freqtrade.io/en/stable/backtesting/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/bot-basics/</loc>
|
<loc>https://www.freqtrade.io/en/stable/bot-basics/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/bot-usage/</loc>
|
<loc>https://www.freqtrade.io/en/stable/bot-usage/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/configuration/</loc>
|
<loc>https://www.freqtrade.io/en/stable/configuration/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/data-analysis/</loc>
|
<loc>https://www.freqtrade.io/en/stable/data-analysis/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/data-download/</loc>
|
<loc>https://www.freqtrade.io/en/stable/data-download/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/deprecated/</loc>
|
<loc>https://www.freqtrade.io/en/stable/deprecated/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/developer/</loc>
|
<loc>https://www.freqtrade.io/en/stable/developer/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/docker_quickstart/</loc>
|
<loc>https://www.freqtrade.io/en/stable/docker_quickstart/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/edge/</loc>
|
<loc>https://www.freqtrade.io/en/stable/edge/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/exchanges/</loc>
|
<loc>https://www.freqtrade.io/en/stable/exchanges/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/faq/</loc>
|
<loc>https://www.freqtrade.io/en/stable/faq/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/freq-ui/</loc>
|
<loc>https://www.freqtrade.io/en/stable/freq-ui/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/freqai-configuration/</loc>
|
<loc>https://www.freqtrade.io/en/stable/freqai-configuration/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/freqai-developers/</loc>
|
<loc>https://www.freqtrade.io/en/stable/freqai-developers/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/freqai-feature-engineering/</loc>
|
<loc>https://www.freqtrade.io/en/stable/freqai-feature-engineering/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/freqai-parameter-table/</loc>
|
<loc>https://www.freqtrade.io/en/stable/freqai-parameter-table/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/freqai-reinforcement-learning/</loc>
|
<loc>https://www.freqtrade.io/en/stable/freqai-reinforcement-learning/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/freqai-running/</loc>
|
<loc>https://www.freqtrade.io/en/stable/freqai-running/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/freqai/</loc>
|
<loc>https://www.freqtrade.io/en/stable/freqai/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/hyperopt/</loc>
|
<loc>https://www.freqtrade.io/en/stable/hyperopt/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/installation/</loc>
|
<loc>https://www.freqtrade.io/en/stable/installation/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/leverage/</loc>
|
<loc>https://www.freqtrade.io/en/stable/leverage/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/lookahead-analysis/</loc>
|
<loc>https://www.freqtrade.io/en/stable/lookahead-analysis/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/plotting/</loc>
|
<loc>https://www.freqtrade.io/en/stable/plotting/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/plugins/</loc>
|
<loc>https://www.freqtrade.io/en/stable/plugins/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/producer-consumer/</loc>
|
<loc>https://www.freqtrade.io/en/stable/producer-consumer/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/recursive-analysis/</loc>
|
<loc>https://www.freqtrade.io/en/stable/recursive-analysis/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/rest-api/</loc>
|
<loc>https://www.freqtrade.io/en/stable/rest-api/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/sql_cheatsheet/</loc>
|
<loc>https://www.freqtrade.io/en/stable/sql_cheatsheet/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/stoploss/</loc>
|
<loc>https://www.freqtrade.io/en/stable/stoploss/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/strategy-101/</loc>
|
<loc>https://www.freqtrade.io/en/stable/strategy-101/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/strategy-advanced/</loc>
|
<loc>https://www.freqtrade.io/en/stable/strategy-advanced/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/strategy-callbacks/</loc>
|
<loc>https://www.freqtrade.io/en/stable/strategy-callbacks/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/strategy-customization/</loc>
|
<loc>https://www.freqtrade.io/en/stable/strategy-customization/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/strategy_analysis_example/</loc>
|
<loc>https://www.freqtrade.io/en/stable/strategy_analysis_example/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/strategy_migration/</loc>
|
<loc>https://www.freqtrade.io/en/stable/strategy_migration/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/telegram-usage/</loc>
|
<loc>https://www.freqtrade.io/en/stable/telegram-usage/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/trade-object/</loc>
|
<loc>https://www.freqtrade.io/en/stable/trade-object/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/updating/</loc>
|
<loc>https://www.freqtrade.io/en/stable/updating/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/utils/</loc>
|
<loc>https://www.freqtrade.io/en/stable/utils/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/webhook-config/</loc>
|
<loc>https://www.freqtrade.io/en/stable/webhook-config/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/windows_installation/</loc>
|
<loc>https://www.freqtrade.io/en/stable/windows_installation/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/includes/cors/</loc>
|
<loc>https://www.freqtrade.io/en/stable/includes/cors/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/includes/pairlists/</loc>
|
<loc>https://www.freqtrade.io/en/stable/includes/pairlists/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/includes/pricing/</loc>
|
<loc>https://www.freqtrade.io/en/stable/includes/pricing/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/includes/protections/</loc>
|
<loc>https://www.freqtrade.io/en/stable/includes/protections/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/includes/release_template/</loc>
|
<loc>https://www.freqtrade.io/en/stable/includes/release_template/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/includes/showcase/</loc>
|
<loc>https://www.freqtrade.io/en/stable/includes/showcase/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://www.freqtrade.io/en/stable/includes/strategy-imports/</loc>
|
<loc>https://www.freqtrade.io/en/stable/includes/strategy-imports/</loc>
|
||||||
<lastmod>2024-11-01</lastmod>
|
<lastmod>2024-11-02</lastmod>
|
||||||
</url>
|
</url>
|
||||||
</urlset>
|
</urlset>
|
||||||
Binary file not shown.
Reference in New Issue
Block a user