Merge pull request #2156 from freqtrade/remove_live

Remove deprecated option live  - deprecate -r
This commit is contained in:
Matthias
2019-08-22 15:33:39 +02:00
committed by GitHub
17 changed files with 35 additions and 81 deletions

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,20 +41,12 @@ 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
python3 scripts/plot_dataframe.py -p BTC/ETH --timerange=100-200
python3 scripts/plot_dataframe.py -p BTC/ETH --timerange=20180801-20180805
```
Timerange doesn't work with live data.
To plot trades stored in a database use `--db-url` argument:
``` bash