getLatestBigDealsPeriodic method

void getLatestBigDealsPeriodic({
  1. required String symbol,
  2. int? limit,
  3. required Duration period,
})

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

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

Implementation

void getLatestBigDealsPeriodic(
    {required String symbol, int? limit, required Duration period}) {
  log.i('Subscribe to the latest big deals.');
  rest.getLatestBigDealsPeriodic(
      symbol: symbol, limit: limit, period: period);
}