types: update exchange name constants

This commit is contained in:
c9s 2023-05-16 18:26:55 +08:00
parent 420654c5ed
commit 9f1c2f9ae4
No known key found for this signature in database
GPG Key ID: 7385E7E464CB0A54

View File

@ -44,6 +44,7 @@ const (
ExchangeBinance ExchangeName = "binance"
ExchangeOKEx ExchangeName = "okex"
ExchangeKucoin ExchangeName = "kucoin"
ExchangeBitget ExchangeName = "bitget"
ExchangeBacktest ExchangeName = "backtest"
)
@ -52,6 +53,7 @@ var SupportedExchanges = []ExchangeName{
ExchangeBinance,
ExchangeOKEx,
ExchangeKucoin,
ExchangeBitget,
// note: we are not using "backtest"
}