From 31253196eaf58efeae226d57f02bb13c7d3efd48 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 22 Mar 2022 20:21:24 +0100 Subject: [PATCH] Improve docs wording --- docs/bot-basics.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/bot-basics.md b/docs/bot-basics.md index 7b71d7da2..299005031 100644 --- a/docs/bot-basics.md +++ b/docs/bot-basics.md @@ -32,16 +32,16 @@ By default, loop runs every few seconds (`internals.process_throttle_secs`) and * Call `populate_entry_trend()` * Call `populate_exit_trend()` * Check timeouts for open orders. - * Calls `check_buy_timeout()` strategy callback for open buy orders. - * Calls `check_sell_timeout()` strategy callback for open sell orders. -* Verifies existing positions and eventually places sell orders. - * Considers stoploss, ROI and sell-signal, `custom_exit()` and `custom_stoploss()`. - * Determine sell-price based on `ask_strategy` configuration setting or by using the `custom_exit_price()` callback. - * Before a sell order is placed, `confirm_trade_exit()` strategy callback is called. + * Calls `check_buy_timeout()` strategy callback for open entry orders. + * Calls `check_sell_timeout()` strategy callback for open exit orders. +* Verifies existing positions and eventually places exit orders. + * Considers stoploss, ROI and exit-signal, `custom_exit()` and `custom_stoploss()`. + * Determine exit-price based on `ask_strategy` configuration setting or by using the `custom_exit_price()` callback. + * Before a exit order is placed, `confirm_trade_exit()` strategy callback is called. * Check position adjustments for open trades if enabled by calling `adjust_trade_position()` and place additional order if required. * Check if trade-slots are still available (if `max_open_trades` is reached). -* Verifies buy signal trying to enter new positions. - * Determine buy-price based on `bid_strategy` configuration setting, or by using the `custom_entry_price()` callback. +* Verifies entry signal trying to enter new positions. + * 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. @@ -55,15 +55,15 @@ This loop will be repeated again and again until the bot is stopped. * Load historic data for configured pairlist. * Calls `bot_loop_start()` once. * Calculate indicators (calls `populate_indicators()` once per pair). -* Calculate buy / sell signals (calls `populate_entry_trend()` and `populate_exit_trend()` once per pair). +* Calculate entry / exit signals (calls `populate_entry_trend()` and `populate_exit_trend()` once per pair). * Loops per candle simulating entry and exit points. - * Confirm trade buy / sell (calls `confirm_trade_entry()` and `confirm_trade_exit()` if implemented in the strategy). + * Confirm trade entry / exits (calls `confirm_trade_entry()` and `confirm_trade_exit()` if implemented in the strategy). * Call `custom_entry_price()` (if implemented in the strategy) to determine entry price (Prices are moved to be within the opening candle). * 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. * Check position adjustments for open trades if enabled and call `adjust_trade_position()` to determine if an additional order is requested. * Call `custom_stoploss()` and `custom_exit()` to find custom exit points. - * For sells based on sell-signal and custom-sell: Call `custom_exit_price()` to determine exit price (Prices are moved to be within the closing candle). + * For exits based on exit-signal and custom-exit: Call `custom_exit_price()` to determine exit price (Prices are moved to be within the closing candle). * Check for Order timeouts, either via the `unfilledtimeout` configuration, or via `check_buy_timeout()` / `check_sell_timeout()` strategy callbacks. * Generate backtest report output