-
Notifications
You must be signed in to change notification settings - Fork 22
/
market_callbacks.go
117 lines (93 loc) · 3.64 KB
/
market_callbacks.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// Copyright (c) 2022 Gobalsky Labs Limited
//
// Use of this software is governed by the Business Source License included
// in the LICENSE.VEGA file and at https://www.mariadb.com/bsl11.
//
// Change Date: 18 months from the later of the date of the first publicly
// available Distribution of this version of the repository, and 25 June 2022.
//
// On the date above, in accordance with the Business Source License, use
// of this software will be governed by version 3 or later of the GNU General
// Public License.
package execution
import (
"context"
"time"
"code.vegaprotocol.io/vega/core/events"
"code.vegaprotocol.io/vega/core/types"
"code.vegaprotocol.io/vega/libs/num"
)
func (m *Market) OnMarketMinLpStakeQuantumMultipleUpdate(_ context.Context, d num.Decimal) {
m.minLPStakeQuantumMultiple = d
}
func (m *Market) OnMarketMinProbabilityOfTradingLPOrdersUpdate(_ context.Context, d num.Decimal) {
m.liquidity.OnMinProbabilityOfTradingLPOrdersUpdate(d)
}
func (m *Market) BondPenaltyFactorUpdate(ctx context.Context, d num.Decimal) {
m.bondPenaltyFactor = d
}
func (m *Market) OnMarginScalingFactorsUpdate(ctx context.Context, sf *types.ScalingFactors) error {
if err := m.risk.OnMarginScalingFactorsUpdate(sf); err != nil {
return err
}
// update our market definition, and dispatch update through the event bus
m.mkt.TradableInstrument.MarginCalculator.ScalingFactors = sf
m.broker.Send(events.NewMarketUpdatedEvent(ctx, *m.mkt))
return nil
}
func (m *Market) OnFeeFactorsMakerFeeUpdate(ctx context.Context, d num.Decimal) error {
m.fee.OnFeeFactorsMakerFeeUpdate(d)
m.mkt.Fees.Factors.MakerFee = d
m.broker.Send(events.NewMarketUpdatedEvent(ctx, *m.mkt))
return nil
}
func (m *Market) OnFeeFactorsInfrastructureFeeUpdate(ctx context.Context, d num.Decimal) error {
m.fee.OnFeeFactorsInfrastructureFeeUpdate(d)
m.mkt.Fees.Factors.InfrastructureFee = d
m.broker.Send(events.NewMarketUpdatedEvent(ctx, *m.mkt))
return nil
}
func (m *Market) OnSuppliedStakeToObligationFactorUpdate(d num.Decimal) {
m.liquidity.OnSuppliedStakeToObligationFactorUpdate(d)
}
func (m *Market) OnMarketValueWindowLengthUpdate(d time.Duration) {
m.marketValueWindowLength = d
}
func (m *Market) OnMarketLiquidityProvidersFeeDistribitionTimeStep(d time.Duration) {
m.lpFeeDistributionTimeStep = d
}
func (m *Market) OnMarketTargetStakeTimeWindowUpdate(d time.Duration) {
m.tsCalc.UpdateTimeWindow(d)
}
func (m *Market) OnMarketTargetStakeScalingFactorUpdate(d num.Decimal) error {
return m.tsCalc.UpdateScalingFactor(d)
}
func (m *Market) OnMarketLiquidityProvisionShapesMaxSizeUpdate(v int64) error {
return m.liquidity.OnMarketLiquidityProvisionShapesMaxSizeUpdate(v)
}
func (m *Market) OnMarketLiquidityMaximumLiquidityFeeFactorLevelUpdate(d num.Decimal) {
m.liquidity.OnMaximumLiquidityFeeFactorLevelUpdate(d)
}
func (m *Market) OnMarketProbabilityOfTradingTauScalingUpdate(_ context.Context, d num.Decimal) {
m.liquidity.OnProbabilityOfTradingTauScalingUpdate(d)
}
func (m *Market) OnMarketLiquidityTargetStakeTriggeringRatio(ctx context.Context, d num.Decimal) {
m.lMonitor.UpdateTargetStakeTriggerRatio(ctx, d)
// TODO: Send an event containing updated parameter
}
func (m *Market) OnMarketAuctionMinimumDurationUpdate(ctx context.Context, d time.Duration) {
m.pMonitor.SetMinDuration(d)
m.lMonitor.SetMinDuration(d)
evt := m.as.UpdateMinDuration(ctx, d)
// we were in an auction, and the duration of the auction was updated
if evt != nil {
m.broker.Send(evt)
}
}
func (m *Market) OnMarkPriceUpdateMaximumFrequency(ctx context.Context, d time.Duration) {
if !m.nextMTM.IsZero() {
m.nextMTM = m.nextMTM.Add(-m.mtmDelta)
}
m.nextMTM = m.nextMTM.Add(d)
m.mtmDelta = d
}