Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support timeframe config for binance #128

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions cmd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,11 @@ func executeStartCommand(cmd *cobra.Command, args []string) {
}

mkts[i].ExchangeNames = make(map[string]string, len(wrappers))
mkts[i].ExchangeTimeFrames = make(map[string]string, len(wrappers))

for _, exName := range mkt.Exchanges {
mkts[i].ExchangeNames[exName.Name] = exName.MarketName
mkts[i].ExchangeTimeFrames[exName.Name] = exName.TimeFrame
}
}
err := strategies.MatchWithMarkets(strategyConf.Strategy, mkts)
Expand Down
1 change: 1 addition & 0 deletions environment/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ type MarketConfig struct {
type ExchangeBindingsConfig struct {
Name string `yaml:"exchange"` // Represents the name of the exchange.
MarketName string `yaml:"market_name"` // Represents the name of the market as seen from the exchange.
TimeFrame string `yaml:"time_frame"`
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you please add a doc comment for this struct field?

}

// BotConfig contains all config data of the bot, which can be also loaded from config file.
Expand Down
9 changes: 5 additions & 4 deletions environment/market.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,11 @@ type Ticker struct {

//Market represents the environment the bot is trading in.
type Market struct {
Name string `json:"name,required"` //Represents the name of the market as defined in general (e.g. ETH-BTC).
BaseCurrency string `json:"baseCurrency,omitempty"` //Represents the base currency of the market.
MarketCurrency string `json:"marketCurrency,omitempty"` //Represents the currency to exchange by using base currency.
ExchangeNames map[string]string `json:"-"` // Represents the various names of the market on various exchanges.
Name string `json:"name,required"` //Represents the name of the market as defined in general (e.g. ETH-BTC).
BaseCurrency string `json:"baseCurrency,omitempty"` //Represents the base currency of the market.
MarketCurrency string `json:"marketCurrency,omitempty"` //Represents the currency to exchange by using base currency.
ExchangeNames map[string]string `json:"-"` // Represents the various names of the market on various exchanges.
ExchangeTimeFrames map[string]string `json:"timeFrame,omitempty"` // Represents the timeframe to retrieve candles on various exchanges
}

func (m Market) String() string {
Expand Down
5 changes: 4 additions & 1 deletion exchanges/binance.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,10 @@ func (wrapper *BinanceWrapper) GetMarketSummary(market *environment.Market) (*en
// GetCandles gets the candle data from the exchange.
func (wrapper *BinanceWrapper) GetCandles(market *environment.Market) ([]environment.CandleStick, error) {
if !wrapper.websocketOn {
binanceCandles, err := wrapper.api.NewKlinesService().Symbol(MarketNameFor(market, wrapper)).Do(context.Background())
binanceCandles, err := wrapper.api.NewKlinesService().
Symbol(MarketNameFor(market, wrapper)).
Interval(MarketTimeFrameFor(market, wrapper)).
Do(context.Background())
if err != nil {
return nil, err
}
Expand Down
8 changes: 6 additions & 2 deletions exchanges/generic_exchange_wrapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ package exchanges

import (
"errors"

"github.com/saniales/golang-crypto-trading-bot/environment"
"github.com/shopspring/decimal"
)
Expand All @@ -32,7 +31,7 @@ const (
MakerTrade = "maker"
)

//ExchangeWrapper provides a generic wrapper for exchange services.
// ExchangeWrapper provides a generic wrapper for exchange services.
type ExchangeWrapper interface {
Name() string // Gets the name of the exchange.
GetCandles(market *environment.Market) ([]environment.CandleStick, error) // Gets the candle data from the exchange.
Expand Down Expand Up @@ -64,3 +63,8 @@ var ErrWebsocketNotSupported = errors.New("Cannot use websocket: exchange does n
func MarketNameFor(m *environment.Market, wrapper ExchangeWrapper) string {
return m.ExchangeNames[wrapper.Name()]
}

// MarketTimeFrameFor gets the market timeframe
func MarketTimeFrameFor(m *environment.Market, wrapper ExchangeWrapper) string {
return m.ExchangeTimeFrames[wrapper.Name()]
}