ConvertApi | R Documentation |
binanceRapi.Convert
An R6Class
generator object
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 :
apiClient
Handles the client-server communication.
new()
ConvertApi$new(apiClient)
SapiV1ConvertTradeFlowGet()
ConvertApi$SapiV1ConvertTradeFlowGet( start.time, end.time, timestamp, signature, limit = NULL, recv.window = NULL, ... )
SapiV1ConvertTradeFlowGetWithHttpInfo()
ConvertApi$SapiV1ConvertTradeFlowGetWithHttpInfo( start.time, end.time, timestamp, signature, limit = NULL, recv.window = NULL, ... )
clone()
The objects of this class are cloneable with this method.
ConvertApi$clone(deep = FALSE)
deep
Whether to make a deep clone.
## 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.