2021-12-27 10:42:42 +00:00
|
|
|
### Grid Strategy
|
|
|
|
|
|
|
|
This strategy places buy and sell orders within the specified price range. The gap between orders are equal, thus they
|
|
|
|
form `grids`. The price gap is calculated from price range and the number of grids.
|
|
|
|
|
|
|
|
|
|
|
|
#### Parameters
|
|
|
|
|
|
|
|
- `symbol`
|
|
|
|
- The trading pair symbol, e.g., `BTCUSDT`, `ETHUSDT`
|
|
|
|
- `quantity`
|
2021-12-29 21:39:20 +00:00
|
|
|
- Quantity of asset per order.
|
|
|
|
You can also instead specify an amount of fiat per order with the `amount` parameter.
|
2021-12-27 10:42:42 +00:00
|
|
|
- `gridNumber`
|
|
|
|
- Number of grids, which is the maximum numbers of orders minus one.
|
|
|
|
- `profitSpread`
|
|
|
|
- The arbitrage profit amount of a set of buy and sell orders. In other words, the profit you want to add to your
|
|
|
|
sell order when your buy order is executed.
|
|
|
|
- `upperPrice`
|
|
|
|
- The upper bond price
|
|
|
|
- `lowerPrice`
|
|
|
|
- The lower bond price
|
|
|
|
- `long`
|
|
|
|
- If true, the sell order is submitted in the same order amount as the filled corresponding buy order, rather than
|
|
|
|
the same quantity, which means the arbitrage profit is accumulated in the base asset rather than the quote asset.
|
|
|
|
- `catchUp`
|
|
|
|
- If true, BBGO will try to submit orders for missing grids.
|
|
|
|
|
|
|
|
|
|
|
|
#### Examples
|
|
|
|
|
2021-12-29 21:39:20 +00:00
|
|
|
See [grid.yaml](../../config/grid.yaml)
|