From 6713cda1093694827b2af232157f93867c1ccee0 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 15 Mar 2026 08:41:56 +0100 Subject: [PATCH] docs: Update timeout docs to point to adjust_order_price part of #12928 --- docs/strategy-callbacks.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/strategy-callbacks.md b/docs/strategy-callbacks.md index db623d133..49234afd0 100644 --- a/docs/strategy-callbacks.md +++ b/docs/strategy-callbacks.md @@ -696,6 +696,9 @@ However, freqtrade also offers a custom callback for both order types, which all Backtesting fills orders if their price falls within the candle's low/high range. The below callbacks will be called once per (detail) candle for orders that don't fill immediately (which use custom pricing). +!!! Tip "Replacing orders" + If you'd like to replace an order with a different price instead of just cancelling it, you might want to look at [`adjust_order_price()`](#adjust-order-price) instead, which will allow you to both cancel the order, as well as replace it with a new price. + ### Custom order timeout example Called for every open order until that order is either filled or cancelled.