Description Usage Arguments Value References Examples
the getmarkethistory function retrieves recent trade
information for a specified market on the C-Cex crypto-currency exchange 
https://c-cex.com.
1  | getmarkethistory(market, count = 50)
 | 
market | 
 the market from which history data will be retrieved.  | 
count | 
 the number of recent trades to retrieve (default is 50, max is 100).  | 
A named list with the following elements:
success: a boolean indicating if the request successful?
message: a string describing the error if the request was not successful, otherwise and empty string."
result: A codedata.frame containing recent trade information including the order type, time, quantity, price, and fill type.
https://c-cex.com/?id=api#getmarkethistory
1 2 3 4 5  | ## Not run: 
mh = getmarkethistory("usd-btc")$result
head(mh)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.