forked from stellar-deprecated/kelp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbalancedStrategy.go
88 lines (83 loc) · 3.25 KB
/
balancedStrategy.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package plugins
import (
"github.com/lightyeario/kelp/api"
"github.com/lightyeario/kelp/support/utils"
"github.com/stellar/go/clients/horizon"
)
// balancedConfig contains the configuration params for this Strategy
type balancedConfig struct {
PRICE_TOLERANCE float64 `valid:"-"`
AMOUNT_TOLERANCE float64 `valid:"-"`
SPREAD float64 `valid:"-"` // this is the bid-ask spread (i.e. it is not the spread from the center price)
MIN_AMOUNT_SPREAD float64 `valid:"-"` // reduces the order size by this percentage resulting in a gain anytime 1 unit more than the first layer is consumed
MAX_AMOUNT_SPREAD float64 `valid:"-"` // reduces the order size by this percentage resulting in a gain anytime 1 unit more than the first layer is consumed
MAX_LEVELS int16 `valid:"-"` // max number of levels to have on either side
LEVEL_DENSITY float64 `valid:"-"` // value between 0.0 to 1.0 used as a probability
ENSURE_FIRST_N_LEVELS int16 `valid:"-"` // always adds the first N levels, meaningless if levelDensity = 1.0
MIN_AMOUNT_CARRYOVER_SPREAD float64 `valid:"-"` // the minimum spread % we take off the amountCarryover before placing the orders
MAX_AMOUNT_CARRYOVER_SPREAD float64 `valid:"-"` // the maximum spread % we take off the amountCarryover before placing the orders
CARRYOVER_INCLUSION_PROBABILITY float64 `valid:"-"` // probability of including the carryover at a level that will be added
VIRTUAL_BALANCE_BASE float64 `valid:"-"` // virtual balance to use so we can smoothen out the curve
VIRTUAL_BALANCE_QUOTE float64 `valid:"-"` // virtual balance to use so we can smoothen out the curve
}
// String impl.
func (c balancedConfig) String() string {
return utils.StructString(c, nil)
}
// makeBalancedStrategy is a factory method for balancedStrategy
func makeBalancedStrategy(
sdex *SDEX,
assetBase *horizon.Asset,
assetQuote *horizon.Asset,
config *balancedConfig,
) api.Strategy {
sellSideStrategy := makeSellSideStrategy(
sdex,
assetBase,
assetQuote,
makeBalancedLevelProvider(
config.SPREAD,
false,
config.MIN_AMOUNT_SPREAD,
config.MAX_AMOUNT_SPREAD,
config.MAX_LEVELS,
config.LEVEL_DENSITY,
config.ENSURE_FIRST_N_LEVELS,
config.MIN_AMOUNT_CARRYOVER_SPREAD,
config.MAX_AMOUNT_CARRYOVER_SPREAD,
config.CARRYOVER_INCLUSION_PROBABILITY,
config.VIRTUAL_BALANCE_BASE,
config.VIRTUAL_BALANCE_QUOTE),
config.PRICE_TOLERANCE,
config.AMOUNT_TOLERANCE,
false,
)
// switch sides of base/quote here for buy side
buySideStrategy := makeSellSideStrategy(
sdex,
assetQuote,
assetBase,
makeBalancedLevelProvider(
config.SPREAD,
true, // real base is passed in as quote so pass in true
config.MIN_AMOUNT_SPREAD,
config.MAX_AMOUNT_SPREAD,
config.MAX_LEVELS,
config.LEVEL_DENSITY,
config.ENSURE_FIRST_N_LEVELS,
config.MIN_AMOUNT_CARRYOVER_SPREAD,
config.MAX_AMOUNT_CARRYOVER_SPREAD,
config.CARRYOVER_INCLUSION_PROBABILITY,
config.VIRTUAL_BALANCE_QUOTE,
config.VIRTUAL_BALANCE_BASE),
config.PRICE_TOLERANCE,
config.AMOUNT_TOLERANCE,
true,
)
return makeComposeStrategy(
assetBase,
assetQuote,
buySideStrategy,
sellSideStrategy,
)
}