Remove i.e. where it doesn't fit

This commit is contained in:
Matthias 2019-12-24 06:31:05 +01:00
parent 690eb2a52b
commit 33cfeaf9b0
1 changed files with 1 additions and 1 deletions

View File

@ -398,7 +398,7 @@ Prices are always retrieved right before an order is placed, either by querying
#### Check depth of market
When check depth of market is enabled (i.e. `bid_strategy.check_depth_of_market.enabled=True`), the buy signals are filtered based on the orderbook depth (sum of all amounts) for each orderbook side.
When check depth of market is enabled (`bid_strategy.check_depth_of_market.enabled=True`), the buy signals are filtered based on the orderbook depth (sum of all amounts) for each orderbook side.
Orderbook `bid` (buy) side depth is then divided by the orderbook `ask` (sell) side depth and the resulting delta is compared to the value of the `bid_strategy.check_depth_of_market.bids_to_ask_delta` parameter. The buy order is only executed if the orderbook delta is greater than or equal to the configured delta value.