According to the API this should work and it does. The test explorer fails until this edit is made.
///
/// Get 24 hour stats for a trading pair
///
/// Trading pair
/// TradingPairStats object
public async Task Get24HrStats(string pair)
{
var endpoint = $"/api/v1/market/stats?symbol={pair}";
return await Get<TradingPairStats>(endpoint, false);
}
According to the API this should work and it does. The test explorer fails until this edit is made.
///
/// Get 24 hour stats for a trading pair
///
/// Trading pair
/// TradingPairStats object
public async Task Get24HrStats(string pair)
{
var endpoint = $"/api/v1/market/stats?symbol={pair}";