powered by
This function retrieves stock market tick data from the API.
get_historical_market_capitalization_data( api_token, ticker, from_date = NULL, to_date = NULL )
A list containing the stock market tick data.
The API token for authentication.
is the ticker code and it consists of two parts: SYMBOL_NAME.EXCHANGE_ID
Format: YYYY-MM-DD.
api_token <- "demo" from_date <- "2017-09-10" to_date <- "2017-09-12" ticker <- "AAPL" result <- get_historical_market_capitalization_data(api_token, ticker, from_date, to_date)
Run the code above in your browser using DataLab