Add column description to hyperopt documentation

This commit is contained in:
Matthias 2019-07-16 06:54:38 +02:00
parent 12679da5da
commit 192d7ad735
1 changed files with 3 additions and 2 deletions

View File

@ -31,7 +31,6 @@ Depending on the space you want to optimize, only some of the below are required
* Optional but recommended
* copy `populate_buy_trend` from your strategy - otherwise default-strategy will be used
* copy `populate_sell_trend` from your strategy - otherwise default-strategy will be used
* Add custom loss-function `hyperopt_loss_custom` (Details below)
### 1. Install a Custom Hyperopt File
@ -200,7 +199,9 @@ class SuperDuperHyperOptLoss(IHyperOptLoss):
Currently, the arguments are:
* `results`: DataFrame containing the result
* `results`: DataFrame containing the result
The following columns are available in results (corresponds to the output of backtesting):
`pair, profit_percent, profit_abs, open_time, close_time, open_index, close_index, trade_duration, open_at_end, open_rate, close_rate, sell_reason`
* `trade_count`: Amount of trades (identical to `len(results)`)
* `min_date`: Start date of the hyperopting TimeFrame
* `min_date`: End date of the hyperopting TimeFrame