Learn R Programming

xlm (version 0.1.1)

getTrades: Returns data on trades.

Description

Return all partially fulfilled trades to buy or sell assets on the ledger.

Usage

getTrades(limit, cursor = NULL, order = "asc", domain = "public",
  base_asset_type = "", base_asset_code = "", base_asset_issuer = "",
  counter_asset_type = "", counter_asset_code = "",
  counter_asset_issuer = "", offer_id = "", data.table = FALSE)

Arguments

limit

numeric - the number of records to return.

cursor

numeric - optional, a paging token - where to start from. Can also be "now".

order

character - optional, "asc" or "desc"

domain

- character - signalling to query the testnet or public network. Can be either "testnet" or "public".

base_asset_type

optional, string - type of base asset

base_asset_code

optional, string - code of base asset, not required if type is native

base_asset_issuer

optional, string - issuer of base asset, not required if type is native

counter_asset_type

optional, string - type of counter asset

counter_asset_code

optional, string - code of counter asset, not required if type is native

counter_asset_issuer

optional, string - issuer of counter asset, not required if type is native

offer_id

optional, string - filter for by a specific offer id

data.table

boolean - if true, a data.table is returned. FALSE by default.

Value

data.table or list

Examples

Run this code
# NOT RUN {
getTrades(20)
# }

Run the code above in your browser using DataLab