Added missing fields for kucoin.

feeCategory, makerFeeCoefficient, takerFeeCoefficient and st.
kucoin_and_binance_BACKUP
Nelson Torres 2024-09-23 20:21:59 +00:00 committed by Tyler Goodlet
parent 2377fec665
commit 07b13a99b9
1 changed files with 4 additions and 0 deletions

View File

@ -111,6 +111,10 @@ class KucoinMktPair(Struct, frozen=True):
quoteMaxSize: float quoteMaxSize: float
quoteMinSize: float quoteMinSize: float
symbol: str # our bs_mktid, kucoin's internal id symbol: str # our bs_mktid, kucoin's internal id
feeCategory: int
makerFeeCoefficient: float
takerFeeCoefficient: float
st: bool
class AccountTrade(Struct, frozen=True): class AccountTrade(Struct, frozen=True):