make the method name clear UpdatePriceFromBalances

This commit is contained in:
c9s 2024-10-05 14:31:10 +08:00
parent c13c33dcbb
commit e3a2a857cd
No known key found for this signature in database
GPG Key ID: 7385E7E464CB0A54
5 changed files with 9 additions and 9 deletions

View File

@ -37,8 +37,8 @@ func NewAccountValueCalculator(
}
}
// UpdatePrices updates the price index from the existing balances
func (c *AccountValueCalculator) UpdatePrices(ctx context.Context) error {
// UpdatePriceFromBalances updates the price index from the existing balances
func (c *AccountValueCalculator) UpdatePriceFromBalances(ctx context.Context) error {
balances := c.session.Account.Balances()
currencies := balances.Currencies()
markets := c.session.Markets()
@ -227,7 +227,7 @@ func CalculateBaseQuantity(
} else if len(restBalances) > 1 {
priceSolver := pricesolver.NewSimplePriceResolver(session.Markets())
accountValue := NewAccountValueCalculator(session, priceSolver, "USDT")
if err := accountValue.UpdatePrices(context.Background()); err != nil {
if err := accountValue.UpdatePriceFromBalances(context.Background()); err != nil {
return fixedpoint.Zero, err
}
@ -336,7 +336,7 @@ func CalculateQuoteQuantity(
priceSolver := pricesolver.NewSimplePriceResolver(session.Markets())
accountValue := NewAccountValueCalculator(session, priceSolver, quoteCurrency)
if err := accountValue.UpdatePrices(ctx); err != nil {
if err := accountValue.UpdatePriceFromBalances(ctx); err != nil {
return fixedpoint.Zero, err
}

View File

@ -263,7 +263,7 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
priceSolver := pricesolver.NewSimplePriceResolver(session.Markets())
priceSolver.BindStream(s.session.MarketDataStream)
s.AccountValueCalculator = bbgo.NewAccountValueCalculator(s.session, priceSolver, s.Market.QuoteCurrency)
if err := s.AccountValueCalculator.UpdatePrices(ctx); err != nil {
if err := s.AccountValueCalculator.UpdatePriceFromBalances(ctx); err != nil {
return err
}

View File

@ -260,7 +260,7 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
priceSolver.BindStream(session.MarketDataStream)
s.AccountValueCalculator = bbgo.NewAccountValueCalculator(s.session, priceSolver, s.Market.QuoteCurrency)
if err := s.AccountValueCalculator.UpdatePrices(ctx); err != nil {
if err := s.AccountValueCalculator.UpdatePriceFromBalances(ctx); err != nil {
return err
}

View File

@ -389,7 +389,7 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
// AccountValueCalculator
s.AccountValueCalculator = bbgo.NewAccountValueCalculator(s.session, priceSolver, s.Market.QuoteCurrency)
if err := s.AccountValueCalculator.UpdatePrices(ctx); err != nil {
if err := s.AccountValueCalculator.UpdatePriceFromBalances(ctx); err != nil {
return err
}

View File

@ -1316,7 +1316,7 @@ func (s *Strategy) accountUpdater(ctx context.Context) {
log.WithError(err).Errorf("unable to update account")
}
if err := s.accountValueCalculator.UpdatePrices(ctx); err != nil {
if err := s.accountValueCalculator.UpdatePriceFromBalances(ctx); err != nil {
log.WithError(err).Errorf("unable to update account value with prices")
return
}
@ -1473,7 +1473,7 @@ func (s *Strategy) CrossRun(
s.priceSolver.BindStream(s.sourceSession.MarketDataStream)
s.accountValueCalculator = bbgo.NewAccountValueCalculator(s.sourceSession, s.priceSolver, s.sourceMarket.QuoteCurrency)
if err := s.accountValueCalculator.UpdatePrices(ctx); err != nil {
if err := s.accountValueCalculator.UpdatePriceFromBalances(ctx); err != nil {
return err
}