# Functions

NewAggregateTradeStreamType - create stream name '<symbol>@aggTrade' - The Aggregate Trade Streams push trade information that is aggregated for a single taker order.
NewDiffDepth100msStreamType - create stream name '<symbol>@depth@100ms' - use SubscribeDiffDepthStream for subscribe.
NewDiffDepthStreamType - create stream name '<symbol>@depth' - use SubscribeDiffDepthStream for subscribe.
NewIndividualBookTickerStreamType create stream name '<symbol>@bookTicker'.
NewIndividualMiniTickerStreamType (Individual Symbol Mini Ticker Stream) - create stream name '<symbol>@miniTicker' - 24hr rolling window mini-ticker statistics.
NewIndividualTickerStreamType - create stream name '<symbol>@ticker' - 24hr rolling window ticker statistics for a single symbol.
NewKlineStreamType - create stream name '<symbol>@kline_<interval>' - The Kline/Candlestick Stream push updates to the current klines/candlestick every second.
NewPartialBookDepth100msStreamType - create stream name '<symbol>@depth<levels>@100ms' - use SubscribePartialBookDepthStream for subscribe.
NewPartialBookDepthStreamType - create stream name '<symbol>@depth<levels>' - use SubscribePartialBookDepthStream for subscribe.
NewTradeStreamType - create stream name '<symbol>@trade' - The Trade Streams push raw trade information; each trade has a unique buyer and seller.
NewWsStream https://binance-docs.github.io/apidocs/spot/en/#websocket-market-streams.

# Variables

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Structs

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Type aliases

AggTradeStreamHandler func(stream string, value *AggregateTradeStream, err error) { do something when have error then set to err and return for stop next handler }.
AllBookTickerStreamHandler func(stream string, value *IndividualBookTickerStream, err error) { do something when have error then set to err and return for stop next handler }.
AllMarketMiniTickerStreamHandler func(stream string, value []*IndividualMiniTickerStream, err error) { do something when have error then set to err and return for stop next handler }.
AllMarketTickersStreamHandler func(stream string, value *IndividualTickerStream, err error) { do something when have error then set to err and return for stop next handler }.
DiffDepthStreamHandler DiffDepthStreamType & DiffDepth100msStreamType func(stream string, value *DiffDepthStream, err error) { do something when have error then set to err and return for stop next handler }.
IndividualBookTickerStreamHandler func(stream string, value *IndividualBookTickerStream, err error) { do something when have error then set to err and return for stop next handler }.
IndividualMiniTickerStreamHandler func(stream string, value *IndividualMiniTickerStream, err error) { do something when have error then set to err and return for stop next handler }.
IndividualTickerStreamHandler func(stream string, value *IndividualTickerStream, err error) { do something when have error then set to err and return for stop next handler }.
KlineStreamHandler func(stream string, value *KlineStream, err error) { do something when have error then set to err and return for stop next handler }.
PartialBookDepthStreamHandler PartialBookDepthStreamType & NewPartialBookDepth100msStreamType func(stream string, value *PartialBookDepthStream, err error) { do something when have error then set to err and return for stop next handler }.
No description provided by the author
TradeStreamHandler func(stream string, value *TradeStream, err error) { do something when have error then set to err and return for stop next handler }.