This commit is contained in:
Stefano Ariestasia
2022-03-30 08:35:49 +09:00
parent 05db0067ee
commit c615e4fcc2
5 changed files with 41 additions and 62 deletions

View File

@@ -116,23 +116,3 @@ Assuming both buy and sell are using market orders, a configuration similar to t
```
Obviously, if only one side is using limit orders, different pricing combinations can be used.
### Futures market's order pricing
When trading on futures market. orderbook must be used because there is no ticker data for futures.
``` jsonc
"bid_strategy": {
"ask_last_balance": 0.0,
"use_order_book": true,
"order_book_top": 1,
"check_depth_of_market": {
"enabled": false,
"bids_to_ask_delta": 1
}
},
"ask_strategy": {
"use_order_book": true,
"order_book_top": 1
},
```