NasdaqDataLink.pit.between: Retrieves Point In Time Data from the Nasdaq Data Link PIT...

View source: R/nasdaq_data_link_pointintime.R

NasdaqDataLink.pit.betweenR Documentation

Retrieves Point In Time Data from the Nasdaq Data Link PIT endpoint. Between start and end will show all rows that were visible at any point between two specified points in time. It works inclusively, a row visible exactly at start or exactly at end will be shown too.

Description

Retrieves Point In Time Data from the Nasdaq Data Link PIT endpoint. Between start and end will show all rows that were visible at any point between two specified points in time. It works inclusively, a row visible exactly at start or exactly at end will be shown too.

Usage

NasdaqDataLink.pit.between(
  datatable_code,
  start_date,
  end_date,
  paginate = FALSE,
  ...
)

Arguments

datatable_code

Datatable code on Nasdaq Data Link specified as a string.

start_date

Lower date as a string.

end_date

Upper date as a string.

paginate

When set to TRUE, fetches up to 1,000,000 rows of data

...

Additional named values that are interpreted as Nasdaq Data Link API parameters.

Details

Set your api_key with NasdaqDataLink.api_key function. For instructions on finding your api key go to https://data.nasdaq.com/account/profile

Value

Returns a data.frame.

See Also

NasdaqDataLink.api_key

Examples

## Not run: 
NasdaqDataLink.pit.between('RSM/MSB', '2020-06-11', '2020-06-12', paginate=TRUE)

## End(Not run)

NasdaqDataLink documentation built on June 22, 2022, 9:07 a.m.