trades {bitmexr} | R Documentation |
Individual trade data
Description
trades()
retrieves data regarding individual trades that have been executed on the
exchange.
Usage
trades(
symbol = "XBTUSD",
count = 1000,
reverse = "true",
filter = NULL,
columns = NULL,
start = NULL,
startTime = NULL,
endTime = NULL,
use_auth = FALSE
)
Arguments
symbol |
a character string for the instrument symbol.
Use |
count |
an optional integer to specify the number of rows to return. Maximum of 1000 (the default) per request. |
reverse |
an optional character string. Either |
filter |
an optional character string for table filtering.
Send JSON key/value pairs, such as |
columns |
an optional character vector of column names to return.
If |
start |
an optional integer. Can be used to specify the starting point for results. |
startTime |
an optional character string.
Starting date for results in the format |
endTime |
an optional character string.
Ending date for results in the format |
use_auth |
logical. Use |
Value
trades()
returns a data.frame
containing:
timestamp: POSIXct. Date and time of trade.
symbol: character. The instrument ticker.
side: character. Whether the trade was buy or sell.
size: numeric. Size of the trade.
price: numeric. Price the trade was executed at
tickDirection: character. Indicates if the trade price was higher, lower or the same as the previous trade price.
trdMatchID: character. Unique trade ID.
grossValue: numeric. How many satoshi were exchanged. 1 satoshi = 0.00000001 BTC.
homeNotional: numeric. BTC value of the trade.
foreignNotional: numeric. USD value of the trade.
References
https://www.bitmex.com/api/explorer/#!/Trade/Trade_get
Examples
## Not run:
# Return 1000 most recent trades for symbol "XBTUSD".
trades(symbol = "XBTUSD", count = 10)
# Use filter for very specific values: Return trade data executed at 12:15.
trades(
symbol = "XBTUSD",
filter = "{'timestamp.minute':'12:15'}",
count = 10
)
# Also possible to combine more than one filter.
trades(
symbol = "XBTUSD",
filter = "{'timestamp.minute':'12:15', 'size':10000}",
count = 10
)
## End(Not run)