From e8eb6d7018d0d19b87f5aa7f570a6188d6b6de86 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 20 Jan 2026 18:08:02 +0100 Subject: [PATCH] docs: correct header indentation in advanced-hyperopt --- docs/advanced-hyperopt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/advanced-hyperopt.md b/docs/advanced-hyperopt.md index 7f24e1d15..8b33b6d91 100644 --- a/docs/advanced-hyperopt.md +++ b/docs/advanced-hyperopt.md @@ -142,7 +142,7 @@ class MyAwesomeStrategy(IStrategy): !!! Note All overrides are optional and can be mixed/matched as necessary. -### Dynamic parameters +## Dynamic parameters Parameters can also be defined dynamically, but must be available to the instance once the [`bot_start()` callback](strategy-callbacks.md#bot-start) has been called. @@ -159,7 +159,7 @@ class MyAwesomeStrategy(IStrategy): !!! Warning Parameters created this way will not show up in the `list-strategies` parameter count. -### Overriding Base estimator +## Overriding Base estimator You can define your own optuna sampler for Hyperopt by implementing `generate_estimator()` in the Hyperopt subclass.