From f35c6545c13316215c9b518f511ec6f9b982d4f0 Mon Sep 17 00:00:00 2001 From: TheJoeSchr <8218910+TheJoeSchr@users.noreply.github.com> Date: Mon, 31 Jan 2022 20:04:19 +0100 Subject: [PATCH] Update strategy-callbacks.md fix typo --- 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 3a30a2a28..1904dd206 100644 --- a/docs/strategy-callbacks.md +++ b/docs/strategy-callbacks.md @@ -74,7 +74,7 @@ class AwesomeStrategy(IStrategy): Freqtrade will fall back to the `proposed_stake` value should your code raise an exception. The exception itself will be logged. !!! Tip - You do not _have_ to ensure that `min_stake <= returned_value <= max_stake`. Trades will succeed as the returned value will be clamped to supported range and this acton will be logged. + You do not _have_ to ensure that `min_stake <= returned_value <= max_stake`. Trades will succeed as the returned value will be clamped to supported range and this action will be logged. !!! Tip Returning `0` or `None` will prevent trades from being placed.