fix missed "buy" wording in bot-basics

This commit is contained in:
Matthias 2022-03-23 06:48:00 +01:00
parent b1e3ead88b
commit 71e746a060
1 changed files with 1 additions and 1 deletions

View File

@ -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.