remove --live references

This commit is contained in:
Matthias
2019-08-18 06:59:56 +02:00
parent af51ff4162
commit e9e2a83436
11 changed files with 7 additions and 65 deletions

View File

@@ -67,22 +67,10 @@ freqtrade backtesting
freqtrade backtesting --ticker-interval 1m
```
#### Update cached pairs with the latest data
```bash
freqtrade backtesting --refresh-pairs-cached
```
#### With live data (do not alter your testdata files)
```bash
freqtrade backtesting --live
```
#### Using a different on-disk ticker-data source
```bash
freqtrade backtesting --datadir freqtrade/tests/testdata-20180101
freqtrade backtesting --datadir user_data/data/bittrex-20180101
```
#### With a (custom) strategy file

View File

@@ -166,7 +166,6 @@ optional arguments:
Disable applying `max_open_trades` during backtest
(same as setting `max_open_trades` to a very high
number).
-l, --live Use live data.
--strategy-list STRATEGY_LIST [STRATEGY_LIST ...]
Provide a space-separated list of strategies to
backtest Please note that ticker-interval needs to be

View File

@@ -15,7 +15,7 @@ pip install -U -r requirements-plot.txt
Usage for the price plotter:
``` bash
python3 script/plot_dataframe.py [-h] [-p pairs] [--live]
python3 script/plot_dataframe.py [-h] [-p pairs]
```
Example
@@ -41,12 +41,6 @@ To plot multiple pairs, separate them with a comma:
python3 scripts/plot_dataframe.py -p BTC/ETH,XRP/ETH
```
To plot the current live price use the `--live` flag:
``` bash
python3 scripts/plot_dataframe.py -p BTC/ETH --live
```
To plot a timerange (to zoom in):
``` bash