diff --git a/docs/configuration.md b/docs/configuration.md index 0ef29a99c..3f3086833 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -203,7 +203,6 @@ Values set in the configuration file always overwrite values set in the strategy * `ignore_buying_expired_candle_after` * `position_adjustment_enable` * `max_entry_position_adjustment` -* `can_short` ### Configuring amount per trade diff --git a/docs/exchanges.md b/docs/exchanges.md index 4509ffef1..b808096d2 100644 --- a/docs/exchanges.md +++ b/docs/exchanges.md @@ -66,11 +66,10 @@ Accounts having BNB accounts use this to pay for fees - if your first trade happ ### Binance Futures' order pricing -When trading on Binance Futures market. orderbook must be used because there is no price ticker data for futures. +When trading on Binance Futures market, orderbook must be used because there is no price ticker data for futures. ``` jsonc - "bid_strategy": { - "ask_last_balance": 0.0, + "entry_pricing": { "use_order_book": true, "order_book_top": 1, "check_depth_of_market": { @@ -78,7 +77,7 @@ When trading on Binance Futures market. orderbook must be used because there is "bids_to_ask_delta": 1 } }, - "ask_strategy": { + "exit_pricing": { "use_order_book": true, "order_book_top": 1 },