From 71e746a060eaba3a921783885d9225ea73a0d1a0 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 23 Mar 2022 06:48:00 +0100 Subject: [PATCH] fix missed "buy" wording in bot-basics --- docs/bot-basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/bot-basics.md b/docs/bot-basics.md index 299005031..f8d85a711 100644 --- a/docs/bot-basics.md +++ b/docs/bot-basics.md @@ -44,7 +44,7 @@ By default, loop runs every few seconds (`internals.process_throttle_secs`) and * Determine entry-price based on `bid_strategy` configuration setting, or by using the `custom_entry_price()` callback. * In Margin and Futures mode, `leverage()` strategy callback is called to determine the desired leverage. * Determine stake size by calling the `custom_stake_amount()` callback. - * Before a buy order is placed, `confirm_trade_entry()` strategy callback is called. + * Before an entry order is placed, `confirm_trade_entry()` strategy callback is called. This loop will be repeated again and again until the bot is stopped.