* 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 = {})
| 4005 | * @return {promise or undefined} - omitting the callback returns a promise |
| 4006 | */ |
| 4007 | async dailyStats(symbol?: string, params: Dict = {}): Promise<DailyStats[] | DailyStats> { |
| 4008 | if (symbol) params.symbol = symbol; |
| 4009 | return await this.publicSpotRequest('v3/ticker/24hr', params); |
| 4010 | } |
| 4011 | |
| 4012 | /** |
| 4013 | * Gets the the exchange info |
nothing calls this directly
no test coverage detected