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 available_symbols() to see available symbols.

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 "true" of "false". If "true", result will be ordered with starting with the newest (defaults to "true").

filter

an optional character string for table filtering. Send JSON key/value pairs, such as "{'key':'value'}". See examples.

columns

an optional character vector of column names to return. If NULL, all columns will be returned.

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 "yyyy-mm-dd" or "yyyy-mm-dd hh-mm-ss".

endTime

an optional character string. Ending date for results in the format "yyyy-mm-dd" or "yyyy-mm-dd hh-mm-ss".

use_auth

logical. Use TRUE to enable authentication with API key.

Value

trades() returns a data.frame containing:

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)


[Package bitmexr version 0.3.3 Index]