GetHistoricTradeData: This function will return the 2000 most recent trades which...

Description Usage Arguments Details Examples

Description

The symbols that are available can be found here.

Usage

1

Arguments

params

Any parameter accepted by this web service call – see here.

Details

Note that calling this function with invalid parameters will result in an empty data frame.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
params <- list (symbol="btceUSD")
 tryCatch(
     historicTradeData <- GetHistoricTradeData (params),
     error =
         function (e) {
             print (
                 paste (
                     "An exception was thrown -- details follow: ",
                     e,
                     sep=""
                 )
             )
         }
     )

rbitcoinchartsapi documentation built on May 2, 2019, 4:02 a.m.