From 52c73eabeb36e0e44e7abb56e9a66626f07fff69 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 30 Nov 2025 13:25:03 +0100 Subject: [PATCH] docs: add missing space in docs --- docs/strategy-callbacks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/strategy-callbacks.md b/docs/strategy-callbacks.md index 5853d23e1..727075215 100644 --- a/docs/strategy-callbacks.md +++ b/docs/strategy-callbacks.md @@ -634,7 +634,7 @@ class AwesomeStrategy(IStrategy): ## Custom order price rules -By default, freqtrade use the orderbook to automatically set an order price([Relevant documentation](configuration.md#prices-used-for-orders)), you also have the option to create custom order prices based on your strategy. +By default, freqtrade use the orderbook to automatically set an order price ([Relevant documentation](configuration.md#prices-used-for-orders)), you also have the option to create custom order prices based on your strategy. You can use this feature by creating a `custom_entry_price()` function in your strategy file to customize entry prices and `custom_exit_price()` for exits.