Add alpha to endpoint documentation

This commit is contained in:
Matthias 2020-09-13 20:09:54 +02:00
parent 816c8295f1
commit a3d0889dab
1 changed files with 8 additions and 5 deletions

View File

@ -129,13 +129,16 @@ python3 scripts/rest_client.py --config rest_config.json <command> [optional par
| `whitelist` | Show the current whitelist
| `blacklist [pair]` | Show the current blacklist, or adds a pair to the blacklist.
| `edge` | Show validated pairs by Edge if it is enabled.
| `pair_candles` | Returns dataframe for a pair / timeframe combination while the bot is running.
| `pair_history` | Returns an analyzed dataframe for a given timerange, analyzed by a given strategy.
| `plot_config` | Get plot config from the strategy (or nothing if not configured).
| `strategies` | List strategies in strategy directory.
| `available_pairs` | List available backtest data.
| `pair_candles` | Returns dataframe for a pair / timeframe combination while the bot is running. **Alpha**
| `pair_history` | Returns an analyzed dataframe for a given timerange, analyzed by a given strategy. **Alpha**
| `plot_config` | Get plot config from the strategy (or nothing if not configured). **Alpha**
| `strategies` | List strategies in strategy directory. **Alpha**
| `available_pairs` | List available backtest data. **Alpha**
| `version` | Show version
!!! Warning "Alpha status"
Endpoints labeled with *Alpha status* above may change at any time without notice.
Possible commands can be listed from the rest-client script using the `help` command.
``` bash