GET

/api/v1/bots/dca/stats/date

Permission: BOTS_READSecurity: BEARER_JWT

Returns profit metrics, closed deal counts, and currency breakdowns for DCA Bots on a specific calendar date or timestamp.

Query Parameters

3
datestring required

Specific calendar date in YYYY-MM-DD format (or ISO 8601 timestamp, e.g., 2026-08-20).

bot_iduuid

Filters statistics linked to the specified DCA Bot entity ID.

connection_iduuid

Filters statistics linked to the specified Quentrade exchange connection account.

Response Parameters

datestring

The calendar date [YYYY-MM-DD] for which statistics are calculated.

usd_profitstring

Total realized USD profit from deals closed on the specified date.

btc_profitstring

Total BTC equivalent profit calculated for deals closed on that date.

closed_deals_countinteger

Number of bot deals successfully closed on the specified date.

statsobject

Cumulative profit broken down by quote currency (e.g. USDT) for the specified date.

Example Request

GETGET /api/v1/bots/dca/stats/date?date=2026-08-20&bot_id=7c9e6679-7425-40de-944b-e07fc1f90ae7

Example Responses

Returns date-specific profit metrics in quote currencies, USD, and BTC.

get_dca_bot_stats_by_date_200.json
200 OK
{
  "date": "2026-08-20",
  "usd_profit": "7.92",
  "btc_profit": "0.00012185",
  "closed_deals_count": 5,
  "stats": {
    "USDT": "7.92"
  }
}