diff --git a/docs/hyperopt.md b/docs/hyperopt.md index d3371d771..524ce5c88 100644 --- a/docs/hyperopt.md +++ b/docs/hyperopt.md @@ -14,8 +14,7 @@ To learn how to get data for the pairs and exchange you're interested in, head o !!! Note Since 2021.4 release you no longer have to write a separate hyperopt class, but can configure the parameters directly in the strategy. - The legacy method is still supported, but it is no longer the recommended way of setting up hyperopt. - The legacy documentation is available at [Legacy Hyperopt](advanced-hyperopt.md#legacy-hyperopt). + The legacy method was supported up to 2021.8 and has been removed in 2021.9. ## Install hyperopt dependencies @@ -765,7 +764,7 @@ Override the `roi_space()` method if you need components of the ROI tables to va A sample for these methods can be found in the [overriding pre-defined spaces section](advanced-hyperopt.md#overriding-pre-defined-spaces). !!! Note "Reduced search space" - To limit the search space further, Decimals are limited to 3 decimal places (a precision of 0.001). This is usually sufficient, every value more precise than this will usually result in overfitted results. You can however [overriding pre-defined spaces](advanced-hyperopt.md#pverriding-pre-defined-spaces) to change this to your needs. + To limit the search space further, Decimals are limited to 3 decimal places (a precision of 0.001). This is usually sufficient, every value more precise than this will usually result in overfitted results. You can however [overriding pre-defined spaces](advanced-hyperopt.md#overriding-pre-defined-spaces) to change this to your needs. ### Understand Hyperopt Stoploss results diff --git a/docs/strategy-customization.md b/docs/strategy-customization.md index 59efc0e02..48f629df5 100644 --- a/docs/strategy-customization.md +++ b/docs/strategy-customization.md @@ -405,7 +405,7 @@ The metadata-dict (available for `populate_entry_trend`, `populate_exit_trend`, Currently this is `pair`, which can be accessed using `metadata['pair']` - and will return a pair in the format `XRP/BTC`. The Metadata-dict should not be modified and does not persist information across multiple calls. -Instead, have a look at the [Storing information](strategy-advanced.md#Storing-information) section. +Instead, have a look at the [Storing information](strategy-advanced.md#storing-information-persistent) section. ## Strategy file loading