ConvertApi: Convert operations

ConvertApiR Documentation

Convert operations

Description

binanceRapi.Convert

Format

An R6Class generator object

Methods

SapiV1ConvertTradeFlowGet Get Convert Trade History (USER_DATA) - The max interval between startTime and endTime is 30 days. Weight(UID): 3000

  • @param start.time integer

  • @param end.time integer

  • @param timestamp integer

  • @param signature character

  • @param limit integer

  • @param recv.window integer

  • @returnType InlineResponse200135

  • status code : 200 | Convert Trade History

  • return type : InlineResponse200135

  • response headers :

  • status code : 400 | Bad Request

  • return type : Error

  • response headers :

  • status code : 401 | Unauthorized Request

  • return type : Error

  • response headers :

Public fields

apiClient

Handles the client-server communication.

Methods

Public methods


Method new()

Usage
ConvertApi$new(apiClient)

Method SapiV1ConvertTradeFlowGet()

Usage
ConvertApi$SapiV1ConvertTradeFlowGet(
  start.time,
  end.time,
  timestamp,
  signature,
  limit = NULL,
  recv.window = NULL,
  ...
)

Method SapiV1ConvertTradeFlowGetWithHttpInfo()

Usage
ConvertApi$SapiV1ConvertTradeFlowGetWithHttpInfo(
  start.time,
  end.time,
  timestamp,
  signature,
  limit = NULL,
  recv.window = NULL,
  ...
)

Method clone()

The objects of this class are cloneable with this method.

Usage
ConvertApi$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

Examples

## Not run: 
####################  SapiV1ConvertTradeFlowGet  ####################

library(binanceRapi)
var.start.time <- 56 # integer | UTC timestamp in ms
var.end.time <- 56 # integer | UTC timestamp in ms
var.timestamp <- 56 # integer | UTC timestamp in ms
var.signature <- 'signature_example' # character | Signature
var.limit <- 100 # integer | default 100, max 1000
var.recv.window <- 5000 # integer | The value cannot be greater than 60000

#Get Convert Trade History (USER_DATA)
api.instance <- ConvertApi$new()

#Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-MBX-APIKEY'] <- 'TODO_YOUR_API_KEY';

result <- api.instance$SapiV1ConvertTradeFlowGet(var.start.time, var.end.time, var.timestamp, var.signature, limit=var.limit, recv.window=var.recv.window)



## End(Not run)

grahamjwhite/binanceRapi documentation built on Nov. 22, 2022, 9:37 p.m.