declare function getNextCandles(symbol: string, interval: CandleInterval, limit: number): Promise<ICandleData[]>;
Fetches the set of candles after current time based on execution context.
Uses the exchange's getNextCandles implementation to retrieve candles that occur after the current context time.
| Parameter | Description |
|---|---|
symbol |
Trading pair symbol (e.g., "BTCUSDT") |
interval |
Candle interval ("1m" | "3m" |
limit |
Number of candles to fetch |