From 3fa59a159499838bdef08340be70e46680b3fff5 Mon Sep 17 00:00:00 2001 From: Scott Date: Fri, 3 May 2024 16:05:36 +1000 Subject: [PATCH] fixed option url x2 --- exchanges/bybit/bybit_wrapper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exchanges/bybit/bybit_wrapper.go b/exchanges/bybit/bybit_wrapper.go index 923b82c3443..95d09c635c4 100644 --- a/exchanges/bybit/bybit_wrapper.go +++ b/exchanges/bybit/bybit_wrapper.go @@ -2074,7 +2074,7 @@ func (by *Bybit) GetCurrencyTradeURL(ctx context.Context, a asset.Item, cp curre cp.Delimiter = currency.DashDelimiter return tradeBaseURL + "trade/futures/usdc/" + cp.Upper().String(), nil case asset.Options: - return tradeBaseURL + "trade/option/" + cp.Base.Upper().String(), nil + return tradeBaseURL + "trade/option/usdc/" + cp.Base.Upper().String(), nil default: return "", fmt.Errorf("%w %v", asset.ErrNotSupported, a) }