Get Binance Spot account trades
Usage
spot_get_account_trades(
symbol,
order_id = NULL,
start_time = NULL,
end_time = NULL,
from_id = NULL,
limit = 500,
json_list = FALSE,
config = config_spot()
)Arguments
- symbol
Trading pair symbol, for example
"BTCUSDT".- order_id
Optional exchange order ID.
- start_time
Optional start time in milliseconds.
- end_time
Optional end time in milliseconds.
- from_id
Optional trade ID to start from.
- limit
Maximum number of trades to return. Must not exceed
1000.- json_list
If
TRUE, return the parsed list instead of adata.table.- config
A spot configuration created by
config_spot().