getLatestBigDeals method

Future<Map<String, dynamic>?> getLatestBigDeals({
  1. required String symbol,
  2. int? limit,
})

Obtain filled orders worth more than 500,000 USD within the last 24h.

period must be one of the followin strings : '5min', '15min', '30min', '1h', '4h', '1d' https://bybit-exchange.github.io/docs/inverse/#t-marketopeninterest

Implementation

Future<Map<String, dynamic>?> getLatestBigDeals(
    {required String symbol, int? limit}) async {
  log.i('Get the latest big deals.');
  return await rest.getLatestBigDeals(symbol: symbol, limit: limit);
}