test grid extend functions

This commit is contained in:
c9s 2021-10-29 14:00:55 +08:00 committed by c9s
parent 561c476846
commit 56e40eff67
No known key found for this signature in database
GPG Key ID: 7385E7E464CB0A54
2 changed files with 83 additions and 14 deletions

View File

@ -1,16 +1,18 @@
package shakegrid package shakegrid
import "github.com/c9s/bbgo/pkg/fixedpoint" import (
"github.com/c9s/bbgo/pkg/fixedpoint"
)
type Grid struct { type Grid struct {
UpperPrice fixedpoint.Value `json:"upperPrice"` UpperPrice fixedpoint.Value `json:"upperPrice"`
LowerPrice fixedpoint.Value `json:"lowerPrice"` LowerPrice fixedpoint.Value `json:"lowerPrice"`
// Size is the spread of each grid // Spread is the spread of each grid
Size fixedpoint.Value `json:"size"` Spread fixedpoint.Value `json:"spread"`
// Density is the number of total grids // Size is the number of total grids
Density fixedpoint.Value `json:"density"` Size fixedpoint.Value `json:"size"`
// Pins are the pinned grid prices, from low to high // Pins are the pinned grid prices, from low to high
Pins []fixedpoint.Value `json:"pins"` Pins []fixedpoint.Value `json:"pins"`
@ -21,23 +23,47 @@ func NewGrid(lower, upper, density fixedpoint.Value) *Grid {
var size = height.Div(density) var size = height.Div(density)
var pins []fixedpoint.Value var pins []fixedpoint.Value
for p := lower ; p <= upper ; p += size { for p := lower; p <= upper; p += size {
pins = append(pins, p) pins = append(pins, p)
} }
return &Grid{ return &Grid{
UpperPrice: upper, UpperPrice: upper,
LowerPrice: lower, LowerPrice: lower,
Density: density, Size: density,
Size: size, Spread: size,
Pins: pins, Pins: pins,
} }
} }
func (g *Grid) ExtendUpperPrice(price fixedpoint.Value) { func (g *Grid) ExtendUpperPrice(upper fixedpoint.Value) (newPins []fixedpoint.Value) {
g.UpperPrice = upper
// since the grid is extended, the size should be updated as well
g.Size = (g.UpperPrice - g.LowerPrice).Div(g.Spread).Ceil()
lastPin := g.Pins[ len(g.Pins) - 1 ]
for p := lastPin + g.Spread; p <= g.UpperPrice; p += g.Spread {
newPins = append(newPins, p)
}
g.Pins = append(g.Pins, newPins...)
return newPins
} }
func (g *Grid) ExtendLowerPrice(price fixedpoint.Value) { func (g *Grid) ExtendLowerPrice(lower fixedpoint.Value) (newPins []fixedpoint.Value) {
g.LowerPrice = lower
// since the grid is extended, the size should be updated as well
g.Size = (g.UpperPrice - g.LowerPrice).Div(g.Spread).Ceil()
firstPin := g.Pins[0]
numToAdd := (firstPin - g.LowerPrice).Div(g.Spread).Ceil()
for p := firstPin - g.Spread.Mul(numToAdd); p < firstPin; p += g.Spread {
newPins = append(newPins, p)
}
g.Pins = append(newPins, g.Pins...)
return newPins
} }

View File

@ -9,13 +9,56 @@ import (
func TestNewGrid(t *testing.T) { func TestNewGrid(t *testing.T) {
upper := fixedpoint.NewFromFloat(500.0) upper := fixedpoint.NewFromFloat(500.0)
lower := fixedpoint.NewFromFloat(100.0) lower := fixedpoint.NewFromFloat(100.0)
density := fixedpoint.NewFromFloat(100.0) size := fixedpoint.NewFromFloat(100.0)
grid := NewGrid(lower, upper, density) grid := NewGrid(lower, upper, size)
assert.Equal(t, upper, grid.UpperPrice) assert.Equal(t, upper, grid.UpperPrice)
assert.Equal(t, lower, grid.LowerPrice) assert.Equal(t, lower, grid.LowerPrice)
assert.Equal(t, fixedpoint.NewFromFloat(4), grid.Size) assert.Equal(t, fixedpoint.NewFromFloat(4), grid.Spread)
if assert.Len(t, grid.Pins, 101) { if assert.Len(t, grid.Pins, 101) {
assert.Equal(t, fixedpoint.NewFromFloat(100.0), grid.Pins[0]) assert.Equal(t, fixedpoint.NewFromFloat(100.0), grid.Pins[0])
assert.Equal(t, fixedpoint.NewFromFloat(500.0), grid.Pins[100]) assert.Equal(t, fixedpoint.NewFromFloat(500.0), grid.Pins[100])
} }
} }
func TestGrid_ExtendUpperPrice(t *testing.T) {
upper := fixedpoint.NewFromFloat(500.0)
lower := fixedpoint.NewFromFloat(100.0)
size := fixedpoint.NewFromFloat(100.0)
grid := NewGrid(lower, upper, size)
originalSpread := grid.Spread
newPins := grid.ExtendUpperPrice(fixedpoint.NewFromFloat(1000.0))
assert.Equal(t, originalSpread, grid.Spread)
assert.Len(t, newPins, 125) // (1000-500) / 4
assert.Equal(t, fixedpoint.NewFromFloat(4), grid.Spread)
if assert.Len(t, grid.Pins, 226) {
assert.Equal(t, fixedpoint.NewFromFloat(100.0), grid.Pins[0])
assert.Equal(t, fixedpoint.NewFromFloat(1000.0), grid.Pins[225])
}
}
func TestGrid_ExtendLowerPrice(t *testing.T) {
upper := fixedpoint.NewFromFloat(3000.0)
lower := fixedpoint.NewFromFloat(2000.0)
size := fixedpoint.NewFromFloat(100.0)
grid := NewGrid(lower, upper, size)
// spread = (3000 - 2000) / 100.0
expectedSpread := fixedpoint.NewFromFloat(10.0)
assert.Equal(t, expectedSpread, grid.Spread)
originalSpread := grid.Spread
newPins := grid.ExtendLowerPrice(fixedpoint.NewFromFloat(1000.0))
assert.Equal(t, originalSpread, grid.Spread)
// 100 = (2000-1000) / 10
if assert.Len(t, newPins, 100) {
assert.Equal(t, fixedpoint.NewFromFloat(2000.0) - expectedSpread, newPins[99])
}
assert.Equal(t, expectedSpread, grid.Spread)
if assert.Len(t, grid.Pins, 201) {
assert.Equal(t, fixedpoint.NewFromFloat(1000.0), grid.Pins[0])
assert.Equal(t, fixedpoint.NewFromFloat(3000.0), grid.Pins[200])
}
}