From b29eed32ca2c7ee2c1116c5d018b6879f9069fc5 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 17 Jul 2018 20:29:53 +0200 Subject: [PATCH] update documentation --- docs/backtesting.md | 8 ++++---- docs/bot-usage.md | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/backtesting.md b/docs/backtesting.md index 172969ae2..5044c9243 100644 --- a/docs/backtesting.md +++ b/docs/backtesting.md @@ -29,25 +29,25 @@ The backtesting is very easy with freqtrade. #### With 5 min tickers (Per default) ```bash -python3 ./freqtrade/main.py backtesting --realistic-simulation +python3 ./freqtrade/main.py backtesting ``` #### With 1 min tickers ```bash -python3 ./freqtrade/main.py backtesting --realistic-simulation --ticker-interval 1m +python3 ./freqtrade/main.py backtesting --ticker-interval 1m ``` #### Update cached pairs with the latest data ```bash -python3 ./freqtrade/main.py backtesting --realistic-simulation --refresh-pairs-cached +python3 ./freqtrade/main.py backtesting --refresh-pairs-cached ``` #### With live data (do not alter your testdata files) ```bash -python3 ./freqtrade/main.py backtesting --realistic-simulation --live +python3 ./freqtrade/main.py backtesting --live ``` #### Using a different on-disk ticker-data source diff --git a/docs/bot-usage.md b/docs/bot-usage.md index a02403160..1b83ff8e7 100644 --- a/docs/bot-usage.md +++ b/docs/bot-usage.md @@ -126,7 +126,7 @@ optional arguments: -h, --help show this help message and exit -i TICKER_INTERVAL, --ticker-interval TICKER_INTERVAL specify ticker interval (1m, 5m, 30m, 1h, 1d) - --realistic-simulation + --enable-position-tracking Disables buying the same pair multiple times to simulate real world limitations --timerange TIMERANGE @@ -164,7 +164,7 @@ To optimize your strategy, you can use hyperopt parameter hyperoptimization to find optimal parameter values for your stategy. ``` -usage: main.py hyperopt [-h] [-i TICKER_INTERVAL] [--realistic-simulation] +usage: main.py hyperopt [-h] [-i TICKER_INTERVAL] [--enable-position-tracking] [--timerange TIMERANGE] [-e INT] [-s {all,buy,roi,stoploss} [{all,buy,roi,stoploss} ...]] @@ -172,7 +172,7 @@ optional arguments: -h, --help show this help message and exit -i TICKER_INTERVAL, --ticker-interval TICKER_INTERVAL specify ticker interval (1m, 5m, 30m, 1h, 1d) - --realistic-simulation + --enable-position-tracking Disables buying the same pair multiple times to simulate real world limitations --timerange TIMERANGE specify what timerange of data to use.