Exposes the GET /api/v3/myTrades endpoint.

spot_trades_list(symbol, start_time = NULL, end_time = NULL, limit = 500)

Arguments

symbol

Symbol.

start_time

Start time. Something that can be coerced to POSIXct.

end_time

End time. Something that can be coerced to POSIXct.

limit

Maximum number of records in result. Default is 500 and maximum is 1000.

Value

A data frame.

Examples

if (FALSE) {
spot_trades_list("ENJ/ETH")
spot_trades_list("ENJ/ETH", start_time = "2021-09-08", end_time = "2021-09-09")
}