From 510c47bd782874d28e41dcc03186ab06dd8c472f Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 16 May 2025 06:39:24 +0200 Subject: [PATCH] docs: update doc wording in custom_exit callback --- 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 7aa39940c..0dc0ba4e9 100644 --- a/docs/strategy-callbacks.md +++ b/docs/strategy-callbacks.md @@ -121,7 +121,7 @@ Freqtrade will fall back to the `proposed_stake` value should your code raise an Called for open trade every throttling iteration (roughly every 5 seconds) until a trade is closed. -Allows to define custom exit signals, indicating that specified position should be sold. This is very useful when we need to customize exit conditions for each individual trade, or if you need trade data to make an exit decision. +Allows to define custom exit signals, indicating that specified position should be closed (full exit). This is very useful when we need to customize exit conditions for each individual trade, or if you need trade data to make an exit decision. For example you could implement a 1:2 risk-reward ROI with `custom_exit()`.