* Gets the prevday percentage change * @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/market-data-endpoints#24hr-ticker-price-change-statistics * @param {string} symbol - the symbol or symbols * @return {promise or undefined} - omitting the callback returns a pro
(symbol?: string, params: Dict = {})
| 3983 | * @return {promise or undefined} - omitting the callback returns a promise |
| 3984 | */ |
| 3985 | async prevDay(symbol?: string, params: Dict = {}): Promise<DailyStats[] | DailyStats> { |
| 3986 | if (symbol) params.symbol = symbol; |
| 3987 | return await this.publicSpotRequest('v3/ticker/24hr', params); |
| 3988 | } |
| 3989 | |
| 3990 | /** |
| 3991 | * Gets the prevday percentage change |
nothing calls this directly
no test coverage detected