rename baseQuantity to just quantity

This commit is contained in:
c9s 2020-11-11 17:55:44 +08:00
parent b2cd595069
commit 3912de235b

View File

@ -49,7 +49,7 @@ type Strategy struct {
LowerPrice fixedpoint.Value `json:"lowerPrice"`
// Quantity is the quantity you want to submit for each order.
Quantity float64 `json:"baseQuantity"`
Quantity float64 `json:"quantity"`
// activeOrders is the locally maintained active order book of the maker orders.
activeOrders *bbgo.LocalActiveOrderBook