Binance class

Constructors

Binance()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

aggregatedTrades(String symbol, {int? fromId, DateTime? startTime, DateTime? endTime, int? limit = 500}) Future<List<AggregatedTrade>>
Aggregated trades from /api/v1/aggTrades
inherited
aggTrade(String symbol) Stream<WsAggregatedTrade>
Reports aggregated trade events from
inherited
allBookTicker() Stream<WSBookTicker>
Pushes any update to the best bid or ask's price or quantity in real-time for all symbols
inherited
allBookTickers() Future<List<BookTicker>>
All price tickers from /v3/ticker/price
inherited
allDailyStats() Future<List<TickerStats>>
WARNING: this is VERY expensive and may cause rate limiting
inherited
allMiniTickers() Stream<List<MiniTicker>>
Reports 24hr miniTicker events every second for every trading pair that changed in the last second
inherited
allSymbolPriceTickers() Future<List<TickerPrice>>
All price tickers from /v3/ticker/price
inherited
allTickers() Stream<List<Ticker>>
Reports 24hr miniTicker events every second for every trading pair that changed in the last second
inherited
averagePrice(String symbol) Future<AveragedPrice>
Current average price from /v3/avgPrice
inherited
bookDepth(String symbol, [int levels = 5]) Stream<BookDepth>
Reports book depth
inherited
bookTicker(String symbol) Future<BookTicker>
Symbol order book ticker from /v3/ticker/bookTicker
inherited
candlesticks(String symbol, Interval interval, {DateTime? startTime, DateTime? endTime, int? limit = 500}) Future<List<Kline>>
Kline/Candlestick data from /v1/klines
inherited
dailyStats(String? symbol) Future<TickerStats>
24 hour ticker price change statistics from /api/v1/ticker/24hr
inherited
depth(String symbol, [int limit = 100]) Future<BookDepth>
Order book depth from /v1/depth
inherited
diffBookDepth(String symbol) Stream<DiffBookDepth>
Difference book depth
inherited
exchangeInfo() Future<ExchangeInfo>
Returns general info about the exchange from /v1/exchangeInfo
inherited
kline(String symbol, String interval) Stream<WsKline>
Reports candlesticks update events from
inherited
miniTicker(String symbol) Stream<MiniTicker>
Reports 24hr miniTicker events every second from
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
ping() Future<bool>
Return true if the server is available with /v1/ping
inherited
recentTrades(String symbol, [int limit = 500]) Future<List<Trade>>
Recent trades from /v1/trades
inherited
symbolPriceTicker(String symbol) Future<TickerPrice>
Price ticker from /v3/ticker/price
inherited
ticker(String symbol) Stream<Ticker>
Reports 24hr ticker events every second from
inherited
time() Future<DateTime>
Return the current server time from /v1/time
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited