Constructor ExchangeAccountInformation
- Namespace
- WhalesSecret.TradeScriptLib.Entities.Account
- Assembly
- WhalesSecret.TradeScriptLib.dll
ExchangeAccountInformation(string?, DateTime, ExchangeMarket, Dictionary<string, AccountSymbolInformation>, decimal?, decimal?)
Creates a new instance of the object.
[JsonConstructor]
public ExchangeAccountInformation(string? subAccount, DateTime timestamp, ExchangeMarket exchangeMarket, Dictionary<string, AccountSymbolInformation> symbolsInformation, decimal? makerFee, decimal? takerFee)
Parameters
subAccountstringSub-account for which the symbol information entries are relevant, or
nullif the exchange does not have sub-accounts.timestampDateTimeUTC timestamp specifying when the information about the account was valid.
exchangeMarketExchangeMarketExchange market this information represents.
symbolsInformationDictionary<string, AccountSymbolInformation>Symbol information mapped to the symbol name.
makerFeedecimal?Fee to pay for maker orders, or
nullif the information is not available.takerFeedecimal?Fee to pay for taker orders, or
nullif the information is not available.