declare function getRawCandles(symbol: string, interval: CandleInterval, limit?: number, sDate?: number, eDate?: number): Promise<ICandleData[]>;
Fetches raw candles with flexible date/limit parameters.
All modes respect execution context and prevent look-ahead bias.
Parameter combinations:
| Parameter | Description |
|---|---|
symbol |
Trading pair symbol (e.g., "BTCUSDT") |
interval |
Candle interval ("1m" | "3m" |
limit |
Optional number of candles to fetch |
sDate |
Optional start date in milliseconds |
eDate |
Optional end date in milliseconds |