Skip to content

Commit

Permalink
update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Jul 17, 2018
1 parent e176184 commit b29eed3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions docs/backtesting.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions docs/bot-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -164,15 +164,15 @@ 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} ...]]
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.
Expand Down

0 comments on commit b29eed3

Please sign in to comment.